Skip to content

Commit 203e07f

Browse files
authored
Merge pull request #395 from ChargeTimeEU/update_gradle_dependencies
Update gradle dependencies after dependabot updates
2 parents 46f0ad4 + 9f751ee commit 203e07f

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

OCPP-J/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
dependencies {
66
compile project(':common')
7-
compile 'com.google.code.gson:gson:2.8.9'
7+
compile 'com.google.code.gson:gson:2.13.2'
88
compile 'org.java-websocket:Java-WebSocket:1.6.0'
99
testCompile 'junit:junit:4.13.2'
1010
testCompile 'org.mockito:mockito-core:4.11.0'
11-
testCompile 'org.hamcrest:hamcrest-core:1.3'
11+
testCompile 'org.hamcrest:hamcrest-core:3.0'
1212
}
1313

1414
task javadocJar(type: Jar) {

ocpp-common/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
dependencies {
3-
compile 'org.slf4j:slf4j-api:1.7.25'
4-
compile 'ch.qos.logback:logback-classic:1.2.3'
3+
compile 'org.slf4j:slf4j-api:2.0.17'
4+
compile 'ch.qos.logback:logback-classic:1.3.16'
55
compile group: 'javax.xml.soap', name: 'javax.xml.soap-api', version: '1.4.0'
66
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.1'
77

ocpp-v1_6-test/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ plugins {
99
dependencies {
1010
compile project(':common')
1111
compile project(':v1_6')
12-
testCompile 'junit:junit:4.12'
12+
testCompile 'junit:junit:4.13.2'
1313
testCompile 'org.codehaus.groovy:groovy-all:2.4.11'
1414
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
15-
testCompile 'org.hamcrest:hamcrest-core:1.3'
16-
testCompile 'ch.qos.logback:logback-core:1.1.2'
17-
testCompile 'ch.qos.logback:logback-classic:1.1.2'
18-
testCompile 'org.slf4j:jul-to-slf4j:1.7.10'
15+
testCompile 'org.hamcrest:hamcrest-core:3.0'
16+
testCompile 'ch.qos.logback:logback-core:1.3.16'
17+
testCompile 'ch.qos.logback:logback-classic:1.3.16'
18+
testCompile 'org.slf4j:jul-to-slf4j:2.0.17'
1919
}
2020

2121
description = 'Java-OCA-OCPP v1.6 - Integration test'

ocpp-v1_6/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010

1111
testCompile 'junit:junit:4.13.2'
1212
testCompile 'org.mockito:mockito-core:4.11.0'
13-
testCompile 'org.hamcrest:hamcrest-core:1.3'
13+
testCompile 'org.hamcrest:hamcrest-core:3.0'
1414
}
1515

1616
task javadocJar(type: Jar) {

ocpp-v2-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compile 'com.google.code.findbugs:jsr305:3.0.1'
1111
testCompile 'junit:junit:4.13.2'
1212
testCompile 'org.mockito:mockito-core:4.11.0'
13-
testCompile 'org.hamcrest:hamcrest-core:1.3'
13+
testCompile 'org.hamcrest:hamcrest-core:3.0'
1414
}
1515

1616
description = 'Java-OCA-OCPP v2 - Integration test'

ocpp-v2/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compile 'org.java-websocket:Java-WebSocket:1.6.0'
1111
testCompile 'junit:junit:4.13.2'
1212
testCompile 'org.mockito:mockito-core:4.11.0'
13-
testCompile 'org.hamcrest:hamcrest-core:1.3'
13+
testCompile 'org.hamcrest:hamcrest-core:3.0'
1414
}
1515

1616
task javadocJar(type: Jar) {

ocpp-v2_0-test/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ plugins {
99
dependencies {
1010
compile project(':common')
1111
compile project(':v2_0')
12-
testCompile 'junit:junit:4.12'
12+
testCompile 'junit:junit:4.13.2'
1313
testCompile 'org.codehaus.groovy:groovy-all:2.4.11'
1414
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
15-
testCompile 'org.hamcrest:hamcrest-core:1.3'
16-
testCompile 'ch.qos.logback:logback-core:1.1.2'
17-
testCompile 'ch.qos.logback:logback-classic:1.1.2'
18-
testCompile 'org.slf4j:jul-to-slf4j:1.7.10'
15+
testCompile 'org.hamcrest:hamcrest-core:3.0'
16+
testCompile 'ch.qos.logback:logback-core:1.3.16'
17+
testCompile 'ch.qos.logback:logback-classic:1.3.16'
18+
testCompile 'org.slf4j:jul-to-slf4j:2.0.17'
1919
}
2020

2121
description = 'Java-OCA-OCPP v2.0 - Integration test'

ocpp-v2_0/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile 'org.java-websocket:Java-WebSocket:1.6.0'
99
testCompile 'junit:junit:4.13.2'
1010
testCompile 'org.mockito:mockito-core:4.11.0'
11-
testCompile 'org.hamcrest:hamcrest-core:1.3'
11+
testCompile 'org.hamcrest:hamcrest-core:3.0'
1212
}
1313

1414
task javadocJar(type: Jar) {

0 commit comments

Comments
 (0)