Skip to content

Commit 30ed963

Browse files
deejay1druminski
authored andcommitted
Build updates (#45)
* Update gradle and some basic deps * Test also using JDK11
1 parent 8d18065 commit 30ed963

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,12 @@ language: java
22

33
jdk:
44
- openjdk8
5+
- openjdk11
6+
7+
before_cache:
8+
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
9+
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
10+
cache:
11+
directories:
12+
- $HOME/.gradle/caches/
13+
- $HOME/.gradle/wrapper/

build.gradle

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'pl.allegro.tech.build.axion-release' version '1.9.2'
3+
id 'pl.allegro.tech.build.axion-release' version '1.10.2'
44
}
55

66
scmVersion {
@@ -25,8 +25,8 @@ allprojects {
2525
subprojects {
2626

2727
project.ext.versions = [
28-
spock: '1.1-groovy-2.4',
29-
groovy: '2.4.15'
28+
spock: '1.3-groovy-2.5',
29+
groovy: '2.5.8'
3030
]
3131

3232
repositories {
@@ -43,3 +43,7 @@ subprojects {
4343
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation']
4444
}
4545
}
46+
47+
wrapper {
48+
gradleVersion = '5.6.2'
49+
}

gradle/wrapper/gradle-wrapper.jar

1.8 KB
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip

validator/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
// does not work with Java 10
66
// id 'jacoco'
77
id 'application'
8-
id 'com.github.johnrengelman.shadow' version '4.0.0'
8+
id 'com.github.johnrengelman.shadow' version '5.1.0'
99
}
1010

1111
shadowJar {
@@ -18,7 +18,7 @@ dependencies {
1818

1919
compile group: 'com.beust', name: 'jcommander', version: '1.72'
2020
compile group: 'com.google.guava', name: 'guava', version: '24.0-jre'
21-
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.9.2'
21+
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.10'
2222

2323
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
2424
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'

0 commit comments

Comments
 (0)