Aufgeräumt und Versionitis
jbialek/DoMapStitch/pipeline/head There was a failure building this commit Details

This commit is contained in:
Johannes Bialek 2022-10-05 01:16:28 +02:00
parent b1d4408c73
commit db8243d94f
25 changed files with 32 additions and 5 deletions

View File

@ -1,2 +0,0 @@
#Sun Jun 07 02:27:23 CEST 2020
gradle.version=6.5

Binary file not shown.

Binary file not shown.

Binary file not shown.

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
pipeline {
agent any
triggers {
pollSCM('')
}
stages {
stage('Build') {
tools {
jdk "jdk17"
}
steps {
withGradle {
sh './gradlew build'
}
}
}
}
post {
always {
archiveArtifacts artifacts: '**/build/distributions/*.*', fingerprint: true
junit '**/build/test-results/test/*.xml'
step([$class : 'Mailer',
notifyEveryUnstableBuild: true,
recipients : [emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']])].join(' ')])
}
}}

View File

@ -8,8 +8,8 @@ repositories {
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile group: 'commons-io', name: 'commons-io', version: '2.7'
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.13'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
}
application {

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists