jdk 'OpenJDK 8'
}
steps {
- sh './gradlew clean classes testClasses'
+ sh './gradlew --no-daemon clean classes testClasses'
}
}
stage('Test (Java 8)') {
jdk 'OpenJDK 8'
}
steps {
- sh './gradlew test jacocoTestReport'
+ sh './gradlew --no-daemon test jacocoTestReport'
}
post {
always {
jdk 'OpenJDK 8'
}
steps {
- sh './gradlew fatJar'
+ sh './gradlew --no-daemon fatJar'
archiveArtifacts artifacts: 'build/libs/sone*-jar-with-dependencies.jar', fingerprint: true
}
}
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
- sh './gradlew clean test'
+ sh './gradlew --no-daemon clean test'
}
}
}
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
- sh './gradlew clean test'
+ sh './gradlew --no-daemon clean test'
}
}
}