update java, gradle and third party libs

This commit is contained in:
2018-09-29 09:08:29 +02:00
parent 24fcfd7763
commit f07977c27a
6 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ subprojects {
apply plugin: 'eclipse' apply plugin: 'eclipse'
// java compatibility version // java compatibility version
sourceCompatibility = 10 sourceCompatibility = 11
configurations { configurations {
@@ -51,5 +51,5 @@ subprojects {
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '4.10.1' gradleVersion = '4.10.2'
} }

View File

@@ -8,7 +8,7 @@ dependencies {
antlr "org.antlr:antlr4:4.7.1" antlr "org.antlr:antlr4:4.7.1"
compile 'org.lucares:primitiveCollections:0.1.20180908084945' compile 'org.lucares:primitiveCollections:0.1.20180908084945'
compile 'org.apache.commons:commons-lang3:3.8' compile 'org.apache.commons:commons-lang3:3.8.1'
compile 'com.google.guava:guava:26.0-jre' compile 'com.google.guava:guava:26.0-jre'
compile 'org.apache.logging.log4j:log4j-core:2.10.0' compile 'org.apache.logging.log4j:log4j-core:2.10.0'

Binary file not shown.

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@@ -2,7 +2,7 @@
dependencies { dependencies {
compile project(':performanceDb') compile project(':performanceDb')
compile 'org.lucares:primitiveCollections:0.1.20180908084945' compile 'org.lucares:primitiveCollections:0.1.20180908084945'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.6' compile 'com.fasterxml.jackson.core:jackson-databind:2.9.7'
compile 'com.google.guava:guava:26.0-jre' compile 'com.google.guava:guava:26.0-jre'
} }

View File

@@ -3,7 +3,7 @@ dependencies {
compile project(':pdb-api') compile project(':pdb-api')
compile project(':data-store') compile project(':data-store')
compile project(':file-utils') compile project(':file-utils')
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.6' compile 'com.fasterxml.jackson.core:jackson-databind:2.9.7'
compile 'org.apache.commons:commons-collections4:4.2' compile 'org.apache.commons:commons-collections4:4.2'