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
TheBrokenRail 7e0a550811
All checks were successful
EnergonRelics/pipeline/head This commit looks good
Publish To Maven
2020-08-03 22:08:21 -04:00

20 lines
384 B
Groovy

pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
sh './gradlew build publish'
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
}
}
}
}
}