mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
14 lines
No EOL
160 B
Groovy
14 lines
No EOL
160 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
withGradle() {
|
|
sh './gradlew clean build'
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
} |