update 3rd-party libraries

This commit is contained in:
2017-09-23 18:24:51 +02:00
parent c9ff8b5586
commit 347f1fdc74
5 changed files with 20 additions and 20 deletions

View File

@@ -7,10 +7,10 @@ dependencies {
antlr "org.antlr:antlr4:4.7" antlr "org.antlr:antlr4:4.7"
compile 'org.lucares:primitiveCollections:0.1.20170205141947' 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-core:2.9.1'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
} }
sourceSets { sourceSets {

View File

@@ -1,6 +1,6 @@
dependencies { dependencies {
compile 'org.apache.logging.log4j:log4j-core:2.8.2' compile 'org.apache.logging.log4j:log4j-core:2.9.1'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
} }

View File

@@ -1,7 +1,7 @@
dependencies { dependencies {
compile project(':performanceDb') compile project(':performanceDb')
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.8' compile 'com.fasterxml.jackson.core:jackson-databind:2.9.1'
compile 'com.google.guava:guava:21.0' compile 'com.google.guava:guava:23.0'
} }

View File

@@ -13,15 +13,15 @@ dependencies {
compile project(':performanceDb') compile project(':performanceDb')
compile project(':pdb-plotting') 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' 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' 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 { jar {

View File

@@ -4,11 +4,11 @@ dependencies {
compile project(':data-store') compile project(':data-store')
compile project(':file-utils') compile project(':file-utils')
//compile 'org.lucares:ludb:1.0.20170408081113' //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.commons:commons-collections4:4.1'
compile 'org.apache.logging.log4j:log4j-api:2.8.2' compile 'org.apache.logging.log4j:log4j-api:2.9.1'
compile 'org.apache.logging.log4j:log4j-core:2.8.2' compile 'org.apache.logging.log4j:log4j-core:2.9.1'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1'
} }