commit
373df9be06
2 changed files with 12 additions and 6 deletions
|
@ -1,17 +1,13 @@
|
|||
CHANGELOG
|
||||
=========
|
||||
|
||||
4.2.0
|
||||
4.1.0
|
||||
-----
|
||||
|
||||
* EmptyLineSeparator: disabled
|
||||
* Upgrade `tiles-maven-plugin` to 2.11
|
||||
* Upgrade `checkstyle` to 8.10
|
||||
* Upgrade `sevntu-checkstyle` to 1.29.0
|
||||
|
||||
4.1.0
|
||||
-----
|
||||
|
||||
* Upgrade `secntu-checkstyle` to 1.27.0
|
||||
* Upgrade `checkstyle` to 8.7 (properly now that it is supported by sevntu)
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
final String mvn = "mvn --batch-mode --update-snapshots"
|
||||
final String mvn = "mvn --batch-mode --update-snapshots --errors"
|
||||
final dependenciesSupportJDK=9
|
||||
|
||||
pipeline {
|
||||
agent any
|
||||
|
@ -66,11 +67,20 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Build Java 9') {
|
||||
when { expression { dependenciesSupportJDK >= 9 } }
|
||||
steps {
|
||||
withMaven(maven: 'maven', jdk: 'JDK 9') {
|
||||
sh "${mvn} clean verify -Djava.version=9"
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Build Java 10') {
|
||||
when { expression { dependenciesSupportJDK >= 10 } }
|
||||
steps {
|
||||
withMaven(maven: 'maven', jdk: 'JDK 10') {
|
||||
sh "${mvn} clean verify -Djava.version=10"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue