2018-07-07 12:37:23 +01:00
|
|
|
final String publicRepo = 'https://github.com/kemitix/'
|
2018-05-14 18:55:04 +01:00
|
|
|
final String mvn = "mvn --batch-mode --update-snapshots --errors"
|
2018-08-31 08:29:38 +01:00
|
|
|
final dependenciesSupportJDK=10
|
2018-03-09 19:53:26 +00:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
stages {
|
2018-04-18 20:24:31 +01:00
|
|
|
stage('Build & Test') {
|
2018-03-09 19:53:26 +00:00
|
|
|
steps {
|
2018-07-07 12:37:23 +01:00
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
2018-04-18 20:24:31 +01:00
|
|
|
sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
|
2018-08-26 18:18:20 +01:00
|
|
|
// PMD to Jenkins
|
|
|
|
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Report Coverage') {
|
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
|
|
|
// Code Coverage to Jenkins
|
|
|
|
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
2018-07-07 12:37:23 +01:00
|
|
|
// Code Coverage to Codacy
|
2018-04-18 20:24:31 +01:00
|
|
|
sh "${mvn} -pl builder jacoco:report com.gavinmogan:codacy-maven-plugin:coverage " +
|
|
|
|
"-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
|
|
|
|
"-DprojectToken=`$JENKINS_HOME/codacy/token` " +
|
|
|
|
"-DapiToken=`$JENKINS_HOME/codacy/apitoken` " +
|
|
|
|
"-Dcommit=`git rev-parse HEAD`"
|
2018-08-26 18:18:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Report Checkstyle') {
|
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
2018-07-07 12:37:23 +01:00
|
|
|
// Checkstyle to Jenkins
|
2018-04-18 20:24:31 +01:00
|
|
|
step([$class: 'hudson.plugins.checkstyle.CheckStylePublisher',
|
|
|
|
pattern: '**/target/checkstyle-result.xml',
|
|
|
|
healthy:'20',
|
|
|
|
unHealthy:'100'])
|
2018-03-10 20:17:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-18 20:24:31 +01:00
|
|
|
stage('Verify & Install') {
|
2018-03-09 19:53:26 +00:00
|
|
|
steps {
|
2018-07-07 12:37:23 +01:00
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
2018-04-18 20:24:31 +01:00
|
|
|
sh "${mvn} -DskipTests install"
|
2018-03-09 19:53:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-07 12:37:23 +01:00
|
|
|
stage('SonarQube (published)') {
|
|
|
|
when { expression { isPublished(publicRepo) } }
|
2018-03-09 19:53:26 +00:00
|
|
|
steps {
|
2018-04-18 20:24:31 +01:00
|
|
|
withSonarQubeEnv('sonarqube') {
|
2018-07-07 12:37:23 +01:00
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
2018-04-18 20:24:31 +01:00
|
|
|
sh "${mvn} org.sonarsource.scanner.maven:sonar-maven-plugin:3.4.0.905:sonar"
|
|
|
|
}
|
2018-03-09 19:53:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-07 12:37:23 +01:00
|
|
|
stage('Deploy (published release branch)') {
|
|
|
|
when {
|
|
|
|
expression {
|
|
|
|
(isReleaseBranch() &&
|
|
|
|
isPublished(publicRepo) &&
|
|
|
|
notSnapshot())
|
|
|
|
}
|
2018-03-09 19:53:26 +00:00
|
|
|
}
|
|
|
|
steps {
|
2018-07-07 12:37:23 +01:00
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
|
|
|
|
sh "${mvn} -pl ruleset,tile --activate-profiles release deploy"
|
2018-04-18 20:24:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Build Java 9') {
|
2018-05-14 19:49:56 +01:00
|
|
|
when { expression { dependenciesSupportJDK >= 9 } }
|
2018-04-18 20:24:31 +01:00
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 9') {
|
|
|
|
sh "${mvn} clean verify -Djava.version=9"
|
2018-03-09 19:53:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-14 18:55:26 +01:00
|
|
|
stage('Build Java 10') {
|
2018-05-14 19:49:56 +01:00
|
|
|
when { expression { dependenciesSupportJDK >= 10 } }
|
2018-05-14 18:55:26 +01:00
|
|
|
steps {
|
|
|
|
withMaven(maven: 'maven', jdk: 'JDK 10') {
|
|
|
|
sh "${mvn} clean verify -Djava.version=10"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-09 19:53:26 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-07 12:37:23 +01:00
|
|
|
|
|
|
|
private boolean isReleaseBranch() {
|
|
|
|
return branchStartsWith('release/')
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean branchStartsWith(final String branchName) {
|
|
|
|
startsWith(env.GIT_BRANCH, branchName)
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isPublished(final String repo) {
|
|
|
|
startsWith(env.GIT_URL, repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean startsWith(final String value, final String match) {
|
|
|
|
value != null && value.startsWith(match)
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean notSnapshot() {
|
|
|
|
return !(readMavenPom(file: 'pom.xml').version).contains("SNAPSHOT")
|
|
|
|
}
|