Remove Jenkinsfile

This commit is contained in:
raoulvdberge
2021-12-12 20:29:14 +01:00
parent 2ad938b0b4
commit da8adda303

25
Jenkinsfile vendored
View File

@@ -1,25 +0,0 @@
node {
stage('Preparation') {
checkout scm
}
cache(maxCacheSize: 250, caches: [
[$class: 'ArbitraryFileCache', excludes: 'modules-2/modules-2.lock,*/plugin-resolution/**', includes: '**/*', path: '${HOME}/.gradle/caches'],
[$class: 'ArbitraryFileCache', excludes: '', includes: '**/*', path: '${HOME}/.gradle/wrapper']
]) {
stage('Cleanup') {
sh "./gradlew clean"
}
stage('Test') {
sh "./gradlew test"
}
stage('Build') {
sh "./gradlew build"
}
}
stage('Archive artifacts') {
archiveArtifacts 'build/libs/*.jar'
}
stage('Publish artifacts') {
sh "./gradlew publish"
}
}