Skip to content

Commit a87aca2

Browse files
committed
Merge branch '2.7.x'
Closes gh-32782
2 parents b69cf43 + a19e394 commit a87aca2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,14 @@ dependencies {
214214
testImplementation("com.github.h-thurow:simple-jndi")
215215
testImplementation("com.ibm.db2:jcc")
216216
testImplementation("com.jayway.jsonpath:json-path")
217+
testImplementation("com.mysql:mysql-connector-j")
217218
testImplementation("com.querydsl:querydsl-core")
218219
testImplementation("com.squareup.okhttp3:mockwebserver")
219220
testImplementation("com.sun.xml.messaging.saaj:saaj-impl")
220221
testImplementation("io.projectreactor:reactor-test")
221222
testImplementation("io.r2dbc:r2dbc-h2")
222223
testImplementation("jakarta.json:jakarta.json-api")
223224
testImplementation("jakarta.xml.ws:jakarta.xml.ws-api")
224-
testImplementation("mysql:mysql-connector-java")
225225
testImplementation("org.apache.logging.log4j:log4j-to-slf4j")
226226
testImplementation("org.apache.tomcat.embed:tomcat-embed-jasper")
227227
testImplementation("org.assertj:assertj-core")

spring-boot-project/spring-boot-dependencies/build.gradle

+8-1
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,14 @@ bom {
10701070
]
10711071
}
10721072
}
1073-
library("MySQL", "8.0.30") {
1073+
library("MySQL", "8.0.31") {
1074+
group("com.mysql") {
1075+
modules = [
1076+
"mysql-connector-j" {
1077+
exclude group: "com.google.protobuf", module: "protobuf-java"
1078+
}
1079+
]
1080+
}
10741081
group("mysql") {
10751082
modules = [
10761083
"mysql-connector-java" {

spring-boot-project/spring-boot/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ dependencies {
106106
testImplementation("com.ibm.db2:jcc")
107107
testImplementation("com.jayway.jsonpath:json-path")
108108
testImplementation("com.microsoft.sqlserver:mssql-jdbc")
109+
testImplementation("com.mysql:mysql-connector-j")
109110
testImplementation("com.squareup.okhttp3:okhttp")
110111
testImplementation("com.sun.xml.messaging.saaj:saaj-impl")
111112
testImplementation("io.projectreactor:reactor-test")
112113
testImplementation("io.r2dbc:r2dbc-h2")
113114
testImplementation("jakarta.inject:jakarta.inject-api")
114115
testImplementation("jakarta.xml.ws:jakarta.xml.ws-api")
115-
testImplementation("mysql:mysql-connector-java")
116116
testImplementation("net.sourceforge.jtds:jtds")
117117
testImplementation("org.apache.derby:derby")
118118
testImplementation("org.apache.derby:derbytools")

0 commit comments

Comments
 (0)