Skip to content

Commit e886af4

Browse files
authored
Merge pull request #10462 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents fd19d54 + d670eb2 commit e886af4

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ configurations.all {
7171
dependencies {
7272
api 'junit:junit:4.13.2'
7373
api 'org.slf4j:slf4j-api:1.7.36'
74-
compileOnly 'org.jetbrains:annotations:24.1.0'
75-
testCompileOnly 'org.jetbrains:annotations:24.1.0'
74+
compileOnly 'org.jetbrains:annotations:26.0.2'
75+
testCompileOnly 'org.jetbrains:annotations:26.0.2'
7676
api 'org.apache.commons:commons-compress:1.24.0'
7777
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
7878
exclude(group: 'org.jetbrains', module: 'annotations')

modules/cratedb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
testImplementation project(':jdbc-test')
77
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
88

9-
compileOnly 'org.jetbrains:annotations:24.1.0'
9+
compileOnly 'org.jetbrains:annotations:26.0.2'
1010
}

modules/hivemq/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "Testcontainers :: HiveMQ"
22

33
dependencies {
44
api(project(":testcontainers"))
5-
api("org.jetbrains:annotations:24.1.0")
5+
api("org.jetbrains:annotations:26.0.2")
66

77
shaded("org.apache.commons:commons-lang3:3.17.0")
88
shaded("commons-io:commons-io:2.17.0")

modules/jdbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: JDBC"
33
dependencies {
44
api project(':database-commons')
55

6-
compileOnly 'org.jetbrains:annotations:24.1.0'
6+
compileOnly 'org.jetbrains:annotations:26.0.2'
77
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
88
testImplementation 'org.vibur:vibur-dbcp:25.0'
99
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.30'

modules/mysql/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
testImplementation testFixtures(project(':r2dbc'))
1313
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.3.0'
1414

15-
compileOnly 'org.jetbrains:annotations:24.1.0'
15+
compileOnly 'org.jetbrains:annotations:26.0.2'
1616
}
1717

1818
tasks.japicmp {

modules/nginx/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "Testcontainers :: Nginx"
22

33
dependencies {
44
api project(':testcontainers')
5-
compileOnly 'org.jetbrains:annotations:24.1.0'
5+
compileOnly 'org.jetbrains:annotations:26.0.2'
66
testImplementation 'org.assertj:assertj-core:3.27.3'
77
}
88

modules/oracle-free/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
testImplementation project(':jdbc-test')
1010
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.5.0.24.07'
1111

12-
compileOnly 'org.jetbrains:annotations:24.1.0'
12+
compileOnly 'org.jetbrains:annotations:26.0.2'
1313

1414
testImplementation testFixtures(project(':r2dbc'))
1515
testRuntimeOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0'

modules/oracle-xe/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
testImplementation project(':jdbc-test')
1010
testImplementation 'com.oracle.database.jdbc:ojdbc11:23.5.0.24.07'
1111

12-
compileOnly 'org.jetbrains:annotations:24.1.0'
12+
compileOnly 'org.jetbrains:annotations:26.0.2'
1313

1414
testImplementation testFixtures(project(':r2dbc'))
1515
testRuntimeOnly 'com.oracle.database.r2dbc:oracle-r2dbc:1.2.0'

modules/postgresql/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
testImplementation testFixtures(project(':r2dbc'))
1313
testRuntimeOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
1414

15-
compileOnly 'org.jetbrains:annotations:24.1.0'
15+
compileOnly 'org.jetbrains:annotations:26.0.2'
1616
}
1717

1818
tasks.japicmp {

modules/presto/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
testImplementation project(':jdbc-test')
77
testRuntimeOnly 'io.prestosql:presto-jdbc:350'
8-
compileOnly 'org.jetbrains:annotations:24.1.0'
8+
compileOnly 'org.jetbrains:annotations:26.0.2'
99
}

0 commit comments

Comments
 (0)