This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/Jenkinsfile

20 lines
384 B
Plaintext
Raw Normal View History

2020-07-13 16:46:44 -04:00
pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
2020-08-03 22:08:21 -04:00
sh './gradlew build publish'
2020-07-13 16:46:44 -04:00
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
}
}
}
}
}