Skip to content

Commit d796707

Browse files
authored
Use testCompileClasspath instead of testCompileOnly (#3219)
1 parent 63692d3 commit d796707

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ dependencies {
165165
compile 'junit:junit:4.12'
166166
compile 'org.slf4j:slf4j-api:1.7.30'
167167
compileOnly 'org.jetbrains:annotations:20.0.0'
168-
testCompileOnly 'org.jetbrains:annotations:20.0.0'
168+
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
169169
compile 'org.apache.commons:commons-compress:1.20'
170170
compile ('org.rnorth.duct-tape:duct-tape:1.0.8') {
171171
exclude(group: 'org.jetbrains', module: 'annotations')

examples/mongodb-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repositories {
99
dependencies {
1010
testImplementation 'org.testcontainers:testcontainers'
1111
testImplementation 'junit:junit:4.13'
12-
testCompileOnly 'org.jetbrains:annotations:20.0.0'
12+
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
1313
}

modules/selenium/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ dependencies {
1212
testCompile project(':nginx')
1313

1414
compileOnly 'org.jetbrains:annotations:20.0.0'
15-
testCompileOnly 'org.jetbrains:annotations:20.0.0'
15+
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
1616
}

modules/spock/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
testRuntime 'org.postgresql:postgresql:42.2.16'
1919
testRuntime 'mysql:mysql-connector-java:8.0.21'
2020

21-
testCompileOnly 'org.jetbrains:annotations:20.0.0'
21+
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
2222
}
2323

2424
sourceJar {

0 commit comments

Comments
 (0)