Skip to content

Commit dc8203d

Browse files
committed
Fix JUnit dependency issue
1 parent 047221b commit dc8203d

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

build.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ buildscript {
33
springBootVersion = '3.5.0'
44
springVersion = '6.2.7'
55
jacksonVersion = '2.19.0'
6-
mockitoVersion = '5.2.+'
76
retrofitVersion = '2.11.0'
87
}
98
dependencies {
@@ -100,18 +99,14 @@ dependencies {
10099
// https://mvnrepository.com/artifact/ee.bitweb/spring-test-core
101100
testImplementation group: 'ee.bitweb', name: 'spring-test-core', version: '2.+'
102101

103-
// https://mvnrepository.com/artifact/org.mockito/mockito-inline
104-
testImplementation group: 'org.mockito', name: 'mockito-inline', version: "${mockitoVersion}"
105-
106-
// https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
107-
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: "${mockitoVersion}"
108-
109102
// https://mvnrepository.com/artifact/org.mock-server/mockserver-netty
110103
testImplementation ("org.mock-server:mockserver-netty:5.15.0") {
111104
exclude group: 'junit', module: 'junit'
112105
}
113106

114107
testImplementation group : 'org.testcontainers', name: 'testcontainers', version: "1.+"
108+
109+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
115110
}
116111

117112
configurations {

0 commit comments

Comments
 (0)