Skip to content

Commit 02a8eed

Browse files
Combined dependencies PR (#4768)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b4fcec8 commit 02a8eed

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

examples/selenium-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.5.6'
3+
id 'org.springframework.boot' version '2.6.1'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

examples/spring-boot-kotlin-redis/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
id("org.springframework.boot") version "2.5.6"
2+
id("org.springframework.boot") version "2.6.1"
33
id("org.jetbrains.kotlin.jvm") version "1.6.0"
4-
id("org.jetbrains.kotlin.plugin.spring") version "1.5.31"
4+
id("org.jetbrains.kotlin.plugin.spring") version "1.6.0"
55
}
66

77
apply plugin: 'io.spring.dependency-management'

examples/spring-boot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.5.6'
3+
id 'org.springframework.boot' version '2.6.1'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

modules/jdbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'org.jetbrains:annotations:23.0.0'
88
testImplementation 'commons-dbutils:commons-dbutils:1.7'
99
testImplementation 'org.vibur:vibur-dbcp:25.0'
10-
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.0.12'
10+
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.0.13'
1111
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
1212
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
1313
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'

modules/localstack/build.gradle

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

66
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.122'
77
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.122'
8-
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.100'
8+
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.124'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.122'
1010
testImplementation 'software.amazon.awssdk:s3:2.17.72'
1111
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'

modules/mssqlserver/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ dependencies {
1010
compileOnly 'io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'
1111

1212
testImplementation project(':jdbc-test')
13-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.4.0.jre8'
13+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.5.0.jre8-preview'
1414

1515
testImplementation project(':r2dbc')
1616
testImplementation 'io.r2dbc:r2dbc-mssql:0.8.7.RELEASE'
1717

1818
// MSSQL's wait strategy requires the JDBC driver
1919
testImplementation testFixtures(project(':r2dbc'))
20-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.4.0.jre8'
20+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.5.0.jre8-preview'
2121
}

modules/mysql/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Testcontainers :: JDBC :: MySQL"
22

33
dependencies {
4-
annotationProcessor 'com.google.auto.service:auto-service:1.0'
4+
annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
55
compileOnly 'com.google.auto.service:auto-service:1.0'
66

77
api project(':jdbc')
@@ -15,5 +15,5 @@ dependencies {
1515
testImplementation testFixtures(project(':r2dbc'))
1616
testImplementation 'dev.miku:r2dbc-mysql:0.8.2.RELEASE'
1717

18-
compileOnly 'org.jetbrains:annotations:22.0.0'
18+
compileOnly 'org.jetbrains:annotations:23.0.0'
1919
}

0 commit comments

Comments
 (0)