We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f41d1 commit 3b131cdCopy full SHA for 3b131cd
1 file changed
Jenkinsfile
@@ -28,6 +28,23 @@ pipeline {
28
}
29
30
31
+ stage ('Artifactory configuration') {
32
+ steps {
33
+ rtServer (
34
+ id: "InriaArtifactoryServer",
35
+ url: 'http://maven.irisa.fr/artifactory',
36
+ credentialsId: 'credRepoInria' // add credentials in Jenkins
37
+ )
38
+
39
+ rtMavenDeployer (
40
+ id: "MAVEN_DEPLOYER",
41
+ serverId: "InriaArtifactoryServer",
42
+ releaseRepo: "malai-public-release",
43
+ snapshotRepo: "malai-public-snapshot"
44
45
+ }
46
47
48
stage ('Build') {
49
steps {
50
rtMavenRun (
@@ -38,6 +55,14 @@ pipeline {
55
56
57
58
+ stage ('Publish build info') {
59
60
+ rtPublishBuildInfo (
61
+ serverId: "InriaArtifactoryServer"
62
63
64
65
66
67
post{
68
success {
0 commit comments