Skip to content

Commit

Permalink
Use testCompileClasspath instead of testCompileOnly (#3219)
Browse files Browse the repository at this point in the history
  • Loading branch information
colltoaction committed Sep 12, 2020
1 parent 63692d3 commit d796707
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ dependencies {
compile 'junit:junit:4.12'
compile 'org.slf4j:slf4j-api:1.7.30'
compileOnly 'org.jetbrains:annotations:20.0.0'
testCompileOnly 'org.jetbrains:annotations:20.0.0'
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
compile 'org.apache.commons:commons-compress:1.20'
compile ('org.rnorth.duct-tape:duct-tape:1.0.8') {
exclude(group: 'org.jetbrains', module: 'annotations')
Expand Down
2 changes: 1 addition & 1 deletion examples/mongodb-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ repositories {
dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'junit:junit:4.13'
testCompileOnly 'org.jetbrains:annotations:20.0.0'
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
}
2 changes: 1 addition & 1 deletion modules/selenium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {
testCompile project(':nginx')

compileOnly 'org.jetbrains:annotations:20.0.0'
testCompileOnly 'org.jetbrains:annotations:20.0.0'
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
}
2 changes: 1 addition & 1 deletion modules/spock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
testRuntime 'org.postgresql:postgresql:42.2.16'
testRuntime 'mysql:mysql-connector-java:8.0.21'

testCompileOnly 'org.jetbrains:annotations:20.0.0'
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
}

sourceJar {
Expand Down

0 comments on commit d796707

Please sign in to comment.