We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63189c8 commit 74d2171Copy full SHA for 74d2171
build.gradle
@@ -132,6 +132,11 @@ subprojects {
132
133
dependencies {
134
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
135
+
136
+ if (project.path != ':testcontainers') {
137
+ // for compiling classes which extend GenericContainer, etc
138
+ compileOnly 'junit:junit:4.13.2'
139
+ }
140
}
141
142
checkstyle {
core/build.gradle
@@ -69,7 +69,7 @@ configurations.all {
69
70
71
72
- api 'junit:junit:4.13.2'
+ implementation 'junit:junit:4.13.2' // originally had api scope
73
api 'org.slf4j:slf4j-api:1.7.36'
74
compileOnly 'org.jetbrains:annotations:24.1.0'
75
testCompileOnly 'org.jetbrains:annotations:24.1.0'
0 commit comments