update third party libraries
This commit is contained in:
@@ -30,11 +30,10 @@ subprojects {
|
|||||||
|
|
||||||
// dependencies that all sub-projects have
|
// dependencies that all sub-projects have
|
||||||
dependencies {
|
dependencies {
|
||||||
testCompile group: 'org.testng', name: 'testng', version: '6.9.6'
|
testCompile group: 'org.testng', name: 'testng', version: '6.10'
|
||||||
//testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task wrapper(type: Wrapper) {
|
task wrapper(type: Wrapper) {
|
||||||
gradleVersion = '3.3'
|
gradleVersion = '3.4.1'
|
||||||
}
|
}
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-bin.zip
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ apply plugin: 'antlr'
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'org.lucares:primitiveCollections:0.1.20170203201705'
|
compile 'org.lucares:primitiveCollections:0.1.20170203201705'
|
||||||
runtime "org.antlr:antlr4:4.5.3"
|
runtime "org.antlr:antlr4:4.6"
|
||||||
antlr "org.antlr:antlr4:4.5.3"
|
antlr "org.antlr:antlr4:4.6"
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ expression
|
|||||||
: prop=identifier eq=equal value=identifier #propertyExpression
|
: prop=identifier eq=equal value=identifier #propertyExpression
|
||||||
| LPAREN expression RPAREN #parenExpression
|
| LPAREN expression RPAREN #parenExpression
|
||||||
| NOT expression #notExpression
|
| NOT expression #notExpression
|
||||||
| left=expression op=and right=expression #andExpression
|
| left=expression op_and=and right=expression #andExpression
|
||||||
| left=expression op=or right=expression #orExpression
|
| left=expression op_or=or right=expression #orExpression
|
||||||
;
|
;
|
||||||
|
|
||||||
identifier
|
identifier
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':performanceDb')
|
compile project(':performanceDb')
|
||||||
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.6'
|
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.7'
|
||||||
compile 'com.google.guava:guava:21.0'
|
compile 'com.google.guava:guava:21.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,10 @@ dependencies {
|
|||||||
compile project(':performanceDb')
|
compile project(':performanceDb')
|
||||||
compile project(':pdb-plotting')
|
compile project(':pdb-plotting')
|
||||||
|
|
||||||
compile("org.springframework.boot:spring-boot-starter-web:1.5.1.RELEASE"){
|
compile("org.springframework.boot:spring-boot-starter-web:1.5.2.RELEASE"){
|
||||||
exclude module: 'spring-boot-starter-logging'
|
exclude module: 'spring-boot-starter-logging'
|
||||||
}
|
}
|
||||||
compile("org.springframework.boot:spring-boot-starter-log4j2:1.5.1.RELEASE")
|
compile("org.springframework.boot:spring-boot-starter-log4j2:1.5.2.RELEASE")
|
||||||
|
|
||||||
testCompile("org.springframework.boot:spring-boot-starter-test:1.5.1.RELEASE")
|
testCompile("org.springframework.boot:spring-boot-starter-test:1.5.2.RELEASE")
|
||||||
}
|
}
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile project(':pdb-api')
|
compile project(':pdb-api')
|
||||||
compile 'org.lucares:ludb:1.0.20170218180719'
|
compile 'org.lucares:ludb:1.0.20170218180719'
|
||||||
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.6'
|
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.7'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
compile 'org.apache.logging.log4j:log4j-api:2.8'
|
compile 'org.apache.logging.log4j:log4j-api:2.8.1'
|
||||||
compile 'org.apache.logging.log4j:log4j-core:2.8'
|
compile 'org.apache.logging.log4j:log4j-core:2.8.1'
|
||||||
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.8'
|
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.1'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user