Bump kemitix-maven-tiles from 0.9.0 to 1.3.1 (#40)

* Remove code signing key

* Remove travis config

* Bump kemitix-maven-tiles from 0.9.0 to 1.3.1

* [jenkins] update to do test build on java 11

* [changelog] update
This commit is contained in:
Paul Campbell 2018-10-10 22:43:07 +01:00 committed by GitHub
parent 7f676b1a78
commit 9efdc9f0ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 27 deletions

View file

@ -1,8 +0,0 @@
language: java
jdk:
- oraclejdk8
cache:
directories:
- "$HOME/.m2"
install: true
script: "mvn -B -U clean install"

View file

@ -1,6 +1,13 @@
CHANGELOG CHANGELOG
========= =========
0.7.1
-----
* Bump assertj-core from 3.11.0 to 3.11.1 (#38)
* Bump kemitix-maven-tiles from 0.9.0 to 1.3.1
* [jenkins] Compatibility build against java 11
0.7.0 0.7.0
----- -----

View file

@ -1,6 +1,5 @@
final String publicRepo = 'https://github.com/kemitix/' final String publicRepo = 'https://github.com/kemitix/'
final String mvn = "mvn --batch-mode --update-snapshots --errors" final String mvn = "mvn --batch-mode --update-snapshots --errors"
final dependenciesSupportJDK = 10
pipeline { pipeline {
agent any agent any
@ -20,10 +19,10 @@ pipeline {
// PMD to Jenkins // PMD to Jenkins
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: '' pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
// Checkstyle to Jenkins // Checkstyle to Jenkins
step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher', step([$class: 'hudson.plugins.checkstyle.CheckStylePublisher',
pattern : '**/target/checkstyle-result.xml', pattern: '**/target/checkstyle-result.xml',
healthy : '20', healthy:'20',
unHealthy: '100']) unHealthy:'100'])
} }
} }
} }
@ -58,19 +57,10 @@ pipeline {
} }
} }
} }
stage('Build Java 9') { stage('Build Java 11') {
when { expression { dependenciesSupportJDK >= 9 } }
steps { steps {
withMaven(maven: 'maven', jdk: 'JDK 9') { withMaven(maven: 'maven', jdk: 'JDK 11') {
sh "${mvn} clean verify -Djava.version=9" sh "${mvn} clean verify -Djava.version=11"
}
}
}
stage('Build Java 10') {
when { expression { dependenciesSupportJDK >= 10 } }
steps {
withMaven(maven: 'maven', jdk: 'JDK 10') {
sh "${mvn} clean verify -Djava.version=10"
} }
} }
} }

Binary file not shown.

View file

@ -19,7 +19,7 @@
<assertj.version>3.11.1</assertj.version> <assertj.version>3.11.1</assertj.version>
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version> <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<tiles-maven-plugin.version>2.12</tiles-maven-plugin.version> <tiles-maven-plugin.version>2.12</tiles-maven-plugin.version>
<kemitix-tiles.version>0.9.0</kemitix-tiles.version> <kemitix-maven-tiles.version>1.3.1</kemitix-maven-tiles.version>
<lombok.version>1.18.2</lombok.version> <lombok.version>1.18.2</lombok.version>
</properties> </properties>
@ -53,7 +53,7 @@
<extensions>true</extensions> <extensions>true</extensions>
<configuration> <configuration>
<tiles> <tiles>
<tile>net.kemitix.tiles:all:${kemitix-tiles.version}</tile> <tile>net.kemitix.tiles:all:${kemitix-maven-tiles.version}</tile>
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile> <tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
</tiles> </tiles>
</configuration> </configuration>