publish this

This commit is contained in:
Ellpeck 2020-05-07 12:39:27 +02:00
parent 16c7a67a13
commit 539fdc2be4

12
Jenkinsfile vendored
View file

@ -19,5 +19,17 @@ pipeline {
archiveArtifacts 'build/libs/**.jar'
}
}
stage('Publish') {
when {
branch 'master'
}
steps {
sh './gradlew publish --no-daemon'
}
}
}
environment {
local_maven = '/var/www/maven'
}
}