diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 65b9122..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-language: java
-jdk:
-- oraclejdk8
-cache:
- directories:
- - "$HOME/.m2"
-install: true
-script: "mvn -B -U clean install"
diff --git a/CHANGELOG b/CHANGELOG
index f2be9d9..ff71ff3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,13 @@
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
-----
diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy
index 43ca395..2116f16 100644
--- a/Jenkinsfile.groovy
+++ b/Jenkinsfile.groovy
@@ -1,6 +1,5 @@
final String publicRepo = 'https://github.com/kemitix/'
final String mvn = "mvn --batch-mode --update-snapshots --errors"
-final dependenciesSupportJDK = 10
pipeline {
agent any
@@ -20,10 +19,10 @@ pipeline {
// PMD to Jenkins
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
// Checkstyle to Jenkins
- step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher',
- pattern : '**/target/checkstyle-result.xml',
- healthy : '20',
- unHealthy: '100'])
+ step([$class: 'hudson.plugins.checkstyle.CheckStylePublisher',
+ pattern: '**/target/checkstyle-result.xml',
+ healthy:'20',
+ unHealthy:'100'])
}
}
}
@@ -58,19 +57,10 @@ pipeline {
}
}
}
- stage('Build Java 9') {
- when { expression { dependenciesSupportJDK >= 9 } }
+ stage('Build Java 11') {
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"
+ withMaven(maven: 'maven', jdk: 'JDK 11') {
+ sh "${mvn} clean verify -Djava.version=11"
}
}
}
diff --git a/codesigning.asc.enc b/codesigning.asc.enc
deleted file mode 100644
index cd9a09b..0000000
Binary files a/codesigning.asc.enc and /dev/null differ
diff --git a/pom.xml b/pom.xml
index af68757..e51e521 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
3.11.1
4.3.0
2.12
- 0.9.0
+ 1.3.1
1.18.2
@@ -53,7 +53,7 @@
true
- net.kemitix.tiles:all:${kemitix-tiles.version}
+ net.kemitix.tiles:all:${kemitix-maven-tiles.version}
net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}