From 347f1fdc74520e53e18f80a53f421c46e6de434d Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sat, 23 Sep 2017 18:24:51 +0200 Subject: [PATCH] update 3rd-party libraries --- data-store/build.gradle | 6 +++--- file-utils/build.gradle | 4 ++-- pdb-plotting/build.gradle | 14 +++++++------- pdb-ui/build.gradle | 8 ++++---- performanceDb/build.gradle | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/data-store/build.gradle b/data-store/build.gradle index f915ef6..6b06d48 100644 --- a/data-store/build.gradle +++ b/data-store/build.gradle @@ -7,10 +7,10 @@ dependencies { antlr "org.antlr:antlr4:4.7" compile 'org.lucares:primitiveCollections:0.1.20170205141947' - compile 'org.apache.commons:commons-lang3:3.5' + compile 'org.apache.commons:commons-lang3:3.6' - compile 'org.apache.logging.log4j:log4j-core:2.8.2' - compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' + compile 'org.apache.logging.log4j:log4j-core:2.9.1' + compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' } sourceSets { diff --git a/file-utils/build.gradle b/file-utils/build.gradle index c1c65c1..f428dab 100644 --- a/file-utils/build.gradle +++ b/file-utils/build.gradle @@ -1,6 +1,6 @@ dependencies { - compile 'org.apache.logging.log4j:log4j-core:2.8.2' - compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' + compile 'org.apache.logging.log4j:log4j-core:2.9.1' + compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' } diff --git a/pdb-plotting/build.gradle b/pdb-plotting/build.gradle index 19fcbee..0b94c8e 100644 --- a/pdb-plotting/build.gradle +++ b/pdb-plotting/build.gradle @@ -1,7 +1,7 @@ - -dependencies { - compile project(':performanceDb') - compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8' - compile 'com.google.guava:guava:21.0' -} - + +dependencies { + compile project(':performanceDb') + compile 'com.fasterxml.jackson.core:jackson-databind:2.9.1' + compile 'com.google.guava:guava:23.0' +} + diff --git a/pdb-ui/build.gradle b/pdb-ui/build.gradle index e520d04..28ddf2e 100644 --- a/pdb-ui/build.gradle +++ b/pdb-ui/build.gradle @@ -13,15 +13,15 @@ dependencies { compile project(':performanceDb') compile project(':pdb-plotting') - compile('org.springframework.boot:spring-boot-starter-mustache:1.5.2.RELEASE') { + compile('org.springframework.boot:spring-boot-starter-mustache:1.5.7.RELEASE') { exclude module: 'spring-boot-starter-logging' } - compile("org.springframework.boot:spring-boot-starter-web:1.5.2.RELEASE"){ + compile("org.springframework.boot:spring-boot-starter-web:1.5.7.RELEASE"){ exclude module: 'spring-boot-starter-logging' } - compile("org.springframework.boot:spring-boot-starter-log4j2:1.5.2.RELEASE") + compile("org.springframework.boot:spring-boot-starter-log4j2:1.5.7.RELEASE") - testCompile("org.springframework.boot:spring-boot-starter-test:1.5.2.RELEASE") + testCompile("org.springframework.boot:spring-boot-starter-test:1.5.7.RELEASE") } jar { diff --git a/performanceDb/build.gradle b/performanceDb/build.gradle index b69bacc..6b81f6f 100644 --- a/performanceDb/build.gradle +++ b/performanceDb/build.gradle @@ -4,11 +4,11 @@ dependencies { compile project(':data-store') compile project(':file-utils') //compile 'org.lucares:ludb:1.0.20170408081113' - compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8' + compile 'com.fasterxml.jackson.core:jackson-databind:2.9.1' compile 'org.apache.commons:commons-collections4:4.1' - compile 'org.apache.logging.log4j:log4j-api:2.8.2' - compile 'org.apache.logging.log4j:log4j-core:2.8.2' - compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' + compile 'org.apache.logging.log4j:log4j-api:2.9.1' + compile 'org.apache.logging.log4j:log4j-core:2.9.1' + compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' }