Remove unnecessary testImplementation dependencies (e.g. JUnit, Mockito, etc) from Project (module) Gradle build files.
The testImplementation dependencies have been declared in the testDependencies project extension defined in the DependencySetPlugin. The testDependencies have been (implicitly) added to the Project's testImplementation dependencies inside the DependencySetPlugin.
This commit is contained in:
@@ -22,10 +22,8 @@ dependencies {
|
||||
implementation "org.assertj:assertj-core"
|
||||
implementation "org.projectlombok:lombok"
|
||||
|
||||
testImplementation "junit:junit"
|
||||
testImplementation "org.mockito:mockito-core"
|
||||
testImplementation "edu.umd.cs.mtc:multithreadedtc"
|
||||
|
||||
// See additional testImplementation dependencies declared in the testDependencies project extension
|
||||
// defined in the DependencySetPlugin.
|
||||
testImplementation project(":spring-geode-starter-test")
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user