Skip to content

Commit 3c82c2a

Browse files
authored
Merge pull request #5244 from halibobo1205/feat/junit4_dependency
feat(test): bump junit from 4.12 to 4.13.2
2 parents 003db80 + e86bcf4 commit 3c82c2a

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

actuator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "actuator – a series of transactions for blockchain."
33
// Dependency versions
44
// ---------------------------------------
55

6-
def junitVersion = "4.12"
6+
def junitVersion = "4.13.2"
77
def mockitoVersion = "2.1.0"
88
def testNgVersion = "6.11"
99
def slf4jVersion = "1.7.25"

chainbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "chainbase – a decentralized database for blockchain."
33
// Dependency versions
44
// ---------------------------------------
55

6-
def junitVersion = "4.12"
6+
def junitVersion = "4.13.2"
77
def mockitoVersion = "2.1.0"
88
def testNgVersion = "6.11"
99
def jacocoVersion = "0.8.0"

common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repositories {
3535
}
3636

3737
dependencies {
38-
testCompile group: 'junit', name: 'junit', version: '4.12'
38+
testCompile group: 'junit', name: 'junit', version: '4.13.2'
3939
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'
4040
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4.1'
4141
compile "com.cedarsoftware:java-util:1.8.0"

consensus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "consensus – a distributed consensus arithmetic for blockchain."
22

33
// Dependency versions
44
// ---------------------------------------
5-
def junitVersion = "4.12"
5+
def junitVersion = "4.13.2"
66
def mockitoVersion = "2.1.0"
77
def testNgVersion = "6.11"
88
def slf4jVersion = "1.7.25"

crypto/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile group: 'junit', name: 'junit', version: '4.12'
14+
testCompile group: 'junit', name: 'junit', version: '4.13.2'
1515
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'
1616
compile project(":common")
1717
}

framework/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
//local libraries
4141
compile fileTree(dir: 'libs', include: '*.jar')
4242
// end local libraries
43-
testCompile group: 'junit', name: 'junit', version: '4.12'
43+
testCompile group: 'junit', name: 'junit', version: '4.13.2'
4444
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.13.0'
4545
testCompile group: 'org.hamcrest', name: 'hamcrest-junit', version: '1.0.0.1'
4646

@@ -54,7 +54,7 @@ dependencies {
5454

5555
compile group: 'com.beust', name: 'jcommander', version: '1.72'
5656

57-
compile group: 'junit', name: 'junit', version: '4.12'
57+
compile group: 'junit', name: 'junit', version: '4.13.2'
5858

5959
compile group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
6060

plugins/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ configurations.getByName('checkstyleConfig') {
2626
dependencies {
2727
//local libraries
2828
compile fileTree(dir: 'libs', include: '*.jar')
29-
testCompile group: 'junit', name: 'junit', version: '4.12'
29+
testCompile group: 'junit', name: 'junit', version: '4.13.2'
3030
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.13.0'
3131
testCompile group: 'org.hamcrest', name: 'hamcrest-junit', version: '1.0.0.1'
3232
testCompile group: 'org.testng', name: 'testng', version: '6.14.3'

0 commit comments

Comments
 (0)