We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f5272a + 9ae817b commit bc5790fCopy full SHA for bc5790f
.travis.yml
@@ -1,6 +1,10 @@
1
language: java
2
sudo: false
3
4
+jdk:
5
+ - oraclejdk8
6
+ - oraclejdk9
7
+
8
before_cache:
9
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
10
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
subprojects/zap-clientapi/zap-clientapi.gradle
@@ -34,7 +34,9 @@ dependencyCheck {
34
task japicmp(type: me.champeau.gradle.japicmp.JapicmpTask) {
35
group 'verification'
36
description "Checks artifacts' binary compatibility with latest (released) version '$versionBC'."
37
- check.dependsOn 'japicmp'
+ if (!JavaVersion.current().isJava9Compatible()) {
38
+ check.dependsOn 'japicmp'
39
+ }
40
inputs.file(jar)
41
42
oldClasspath = configurations.japicmpBaseline
0 commit comments