File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED
3
3
import org.gradle.internal.os.OperatingSystem
4
4
5
5
plugins {
6
+ `java- library`
6
7
id(" org.gradle.test-retry" )
7
8
}
8
9
@@ -67,17 +68,17 @@ tasks.withType<Test>().configureEach {
67
68
}
68
69
69
70
dependencies {
70
- " testImplementation" (dependencyFromLibs(" assertj" ))
71
- " testImplementation" (dependencyFromLibs(" mockito" ))
71
+ testImplementation(dependencyFromLibs(" assertj" ))
72
+ testImplementation(dependencyFromLibs(" mockito" ))
72
73
73
74
if (! project.name.startsWith(" junit-jupiter" )) {
74
- " testImplementation" (project(" :junit-jupiter" ))
75
+ testImplementation(project(" :junit-jupiter" ))
75
76
}
76
- " testImplementation" (testFixtures(project(" :junit-jupiter-api" )))
77
+ testImplementation(testFixtures(project(" :junit-jupiter-api" )))
77
78
78
- " testRuntimeOnly" (project(" :junit-platform-engine" ))
79
- " testRuntimeOnly" (project(" :junit-platform-jfr" ))
80
- " testRuntimeOnly" (project(" :junit-platform-reporting" ))
79
+ testRuntimeOnly(project(" :junit-platform-engine" ))
80
+ testRuntimeOnly(project(" :junit-platform-jfr" ))
81
+ testRuntimeOnly(project(" :junit-platform-reporting" ))
81
82
82
- " testRuntimeOnly" (bundleFromLibs(" log4j" ))
83
+ testRuntimeOnly(bundleFromLibs(" log4j" ))
83
84
}
You can’t perform that action at this time.
0 commit comments