2018-05-31 20:48:43 +01:00
|
|
|
final String mvn = "mvn --batch-mode --update-snapshots --errors"
|
2018-06-16 06:43:52 +01:00
|
|
|
final dependenciesSupportJDK = 9
|
2018-05-31 20:48:43 +01:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2018-06-16 06:43:52 +01:00
|
|
|
stage('release != SNAPSHOT') {
|
|
|
|
// checks that the pom version is not a snapshot when the current or target branch is a release
|
2018-05-31 20:48:43 +01:00
|
|
|
when {
|
|
|
|
expression {
|
2018-06-16 06:43:52 +01:00
|
|
|
(startsWith(env.GIT_BRANCH, 'release') || startsWith(env.CHANGE_TARGET, 'release')) &&
|
2018-05-31 20:48:43 +01:00
|
|
|
(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
steps {
|
2018-06-16 06:43:52 +01:00
|
|
|
error("Build failed because SNAPSHOT version: [" + env.GIT_BRANCH + "][" + env.CHANGE_TARGET + "]")
|
2018-05-31 20:48:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Build & Test') {
|
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
|
|
|
sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
|
|
|
|
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
|
|
|
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
2018-06-16 06:43:52 +01:00
|
|
|
step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher',
|
|
|
|
pattern : '**/target/checkstyle-result.xml',
|
|
|
|
healthy : '20',
|
|
|
|
unHealthy: '100'])
|
2018-05-31 20:48:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Verify & Install') {
|
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
|
|
|
sh "${mvn} -DskipTests install"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-06 22:12:27 +01:00
|
|
|
stage('SonarQube (gitlab only)') {
|
|
|
|
when { expression { env.GIT_URL.startsWith('https://gitlab.com') } }
|
2018-05-31 20:48:43 +01:00
|
|
|
steps {
|
2018-06-18 16:34:14 +01:00
|
|
|
withSonarQubeEnv('sonarqube-gitlab') {
|
2018-05-31 20:48:43 +01:00
|
|
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
|
|
|
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-16 06:43:52 +01:00
|
|
|
stage('Deploy (release on gitlab)') {
|
|
|
|
when {
|
|
|
|
expression {
|
|
|
|
(env.GIT_BRANCH.startsWith('master') && env.GIT_URL.startsWith('https://gitlab.com'))
|
|
|
|
}
|
2018-05-31 20:48:43 +01:00
|
|
|
}
|
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK LTS') {
|
|
|
|
sh "${mvn} deploy --activate-profiles release -DskipTests=true"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-16 06:43:52 +01:00
|
|
|
|
|
|
|
private boolean startsWith(String envSetting, String match) {
|
|
|
|
envSetting != null && envSetting.startsWith(match)
|
|
|
|
}
|