update dependencies

gradle to 4.8
jackson to 2.9.6
spring-boot to 2.0.3
guava to 25.1-jre
gradle-versions-plugin to 0.19.0
This commit is contained in:
2018-06-17 08:59:48 +02:00
parent 3d71befbad
commit daaa0e6907
8 changed files with 69 additions and 64 deletions

View File

@@ -11,7 +11,7 @@ buildscript {
dependencies {
// usage: gradle dependencyUpdates -Drevision=release
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.19.0'
}
}
@@ -51,5 +51,5 @@ subprojects {
}
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
gradleVersion = '4.8'
}

View File

@@ -8,7 +8,7 @@ dependencies {
compile 'org.lucares:primitiveCollections:0.1.20171228131833'
compile 'org.apache.commons:commons-lang3:3.7'
compile 'com.google.guava:guava:24.1-jre'
compile 'com.google.guava:guava:25.1-jre'
compile 'org.apache.logging.log4j:log4j-core:2.10.0'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.10.0'

Binary file not shown.

View File

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

View File

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

View File

@@ -13,15 +13,15 @@ dependencies {
compile project(':performanceDb')
compile project(':pdb-plotting')
compile('org.springframework.boot:spring-boot-starter-mustache:2.0.1.RELEASE') {
compile('org.springframework.boot:spring-boot-starter-mustache:2.0.3.RELEASE') {
exclude module: 'spring-boot-starter-logging'
}
compile("org.springframework.boot:spring-boot-starter-web:2.0.1.RELEASE"){
compile("org.springframework.boot:spring-boot-starter-web:2.0.3.RELEASE"){
exclude module: 'spring-boot-starter-logging'
}
compile("org.springframework.boot:spring-boot-starter-log4j2:2.0.1.RELEASE")
compile("org.springframework.boot:spring-boot-starter-log4j2:2.0.3.RELEASE")
testCompile("org.springframework.boot:spring-boot-starter-test:2.0.1.RELEASE"){
testCompile("org.springframework.boot:spring-boot-starter-test:2.0.3.RELEASE"){
exclude module: 'spring-boot-starter-logging'
}
}

View File

@@ -0,0 +1,5 @@
#db.base=D:/ws/pdb/dataNew
db.base=C:/pdb/dataNew
server.port=17333
gnuplot.home=D:/ws/pdb/gnuplot-5.2
cache.images.duration.seconds=86400

View File

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