Fix Junit excludes
This commit is contained in:
@@ -29,7 +29,7 @@ dependencies {
|
|||||||
runtimeOnly("org.springframework.boot:spring-boot-devtools")
|
runtimeOnly("org.springframework.boot:spring-boot-devtools")
|
||||||
kapt("org.springframework.boot:spring-boot-configuration-processor")
|
kapt("org.springframework.boot:spring-boot-configuration-processor")
|
||||||
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
testImplementation("org.springframework.boot:spring-boot-starter-test") {
|
||||||
exclude(module = "junit")
|
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
|
||||||
exclude(module = "mockito-core")
|
exclude(module = "mockito-core")
|
||||||
}
|
}
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -69,8 +69,8 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>junit</groupId>
|
<groupId>org.junit.vintage</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
|
|||||||
Reference in New Issue
Block a user