Aufgeräumt und Versionitis
jbialek/DoMapStitch/pipeline/head There was a failure building this commit
Details
jbialek/DoMapStitch/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
b1d4408c73
commit
db8243d94f
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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.
Binary file not shown.
|
|
@ -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(' ')])
|
||||
}
|
||||
}}
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue