NaturesAura/Jenkinsfile

14 lines
160 B
Plaintext
Raw Normal View History

2020-02-16 13:27:18 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
withGradle() {
sh './gradlew clean build'
}
}
}
}
}