File tree Expand file tree Collapse file tree 10 files changed +17
-2
lines changed
examples/mongodb-container Expand file tree Collapse file tree 10 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,8 @@ dependencies {
164
164
165
165
compile ' junit:junit:4.12'
166
166
compile ' org.slf4j:slf4j-api:1.7.30'
167
- compile ' org.jetbrains:annotations:19.0.0'
167
+ compileOnly ' org.jetbrains:annotations:20.0.0'
168
+ testCompileOnly ' org.jetbrains:annotations:20.0.0'
168
169
compile ' org.apache.commons:commons-compress:1.20'
169
170
compile (' org.rnorth.duct-tape:duct-tape:1.0.8' ) {
170
171
exclude(group : ' org.jetbrains' , module : ' annotations' )
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ repositories {
9
9
dependencies {
10
10
testImplementation ' org.testcontainers:testcontainers'
11
11
testImplementation ' junit:junit:4.13'
12
+ compileOnly ' org.jetbrains:annotations:20.0.0'
12
13
}
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ dependencies {
4
4
compile project(' :database-commons' )
5
5
testCompile project(' :test-support' )
6
6
7
+ compileOnly ' org.jetbrains:annotations:20.0.0'
7
8
testCompile ' commons-dbutils:commons-dbutils:1.7'
8
9
testCompile ' org.vibur:vibur-dbcp:25.0'
9
10
testCompile ' org.apache.tomcat:tomcat-jdbc:9.0.37'
Original file line number Diff line number Diff line change @@ -14,4 +14,6 @@ dependencies {
14
14
15
15
testCompile testFixtures(project(' :r2dbc' ))
16
16
testCompile ' dev.miku:r2dbc-mysql:0.8.1.RELEASE'
17
+
18
+ compileOnly ' org.jetbrains:annotations:20.0.0'
17
19
}
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ description = "Testcontainers :: Nginx"
2
2
3
3
dependencies {
4
4
compile project(' :testcontainers' )
5
+ compileOnly ' org.jetbrains:annotations:20.0.0'
5
6
}
Original file line number Diff line number Diff line change @@ -15,4 +15,6 @@ dependencies {
15
15
16
16
testCompile testFixtures(project(' :r2dbc' ))
17
17
testCompile ' io.r2dbc:r2dbc-postgresql:0.8.3.RELEASE'
18
+
19
+ compileOnly ' org.jetbrains:annotations:20.0.0'
18
20
}
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ dependencies {
5
5
6
6
testCompile project(' :jdbc-test' )
7
7
testCompile ' io.prestosql:presto-jdbc:331'
8
+ compileOnly ' org.jetbrains:annotations:20.0.0'
8
9
}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ description = "TestContainers :: RabbitMQ"
2
2
3
3
dependencies {
4
4
compile project(" :testcontainers" )
5
- testCompile " com.rabbitmq:amqp-client:5.7.0"
5
+ testCompile ' com.rabbitmq:amqp-client:5.7.0'
6
6
testCompile ' org.assertj:assertj-core:3.12.2'
7
+ compileOnly ' org.jetbrains:annotations:20.0.0'
7
8
}
Original file line number Diff line number Diff line change @@ -10,4 +10,7 @@ dependencies {
10
10
11
11
testCompile ' org.mortbay.jetty:jetty:6.1.26'
12
12
testCompile project(' :nginx' )
13
+
14
+ compileOnly ' org.jetbrains:annotations:20.0.0'
15
+ testCompileOnly ' org.jetbrains:annotations:20.0.0'
13
16
}
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ dependencies {
17
17
18
18
testRuntime ' org.postgresql:postgresql:42.2.15'
19
19
testRuntime ' mysql:mysql-connector-java:8.0.21'
20
+
21
+ testCompileOnly ' org.jetbrains:annotations:20.0.0'
20
22
}
21
23
22
24
sourceJar {
You can’t perform that action at this time.
0 commit comments