Skip to content

Commit 3699bcf

Browse files
committed
Merge branch '3.2.x'
See gh-40224
2 parents f301138 + 3bb7baf commit 3699bcf

File tree

7 files changed

+21
-7
lines changed

7 files changed

+21
-7
lines changed

Diff for: spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ dependencies {
122122
optional("org.springframework.data:spring-data-cassandra") {
123123
exclude group: "org.slf4j", module: "jcl-over-slf4j"
124124
}
125-
optional("org.springframework.data:spring-data-couchbase")
125+
optional("org.springframework.data:spring-data-couchbase") {
126+
exclude(group: "javax.inject", module: "javax.inject")
127+
}
126128
optional("org.springframework.data:spring-data-jpa")
127129
optional("org.springframework.data:spring-data-ldap")
128130
optional("org.springframework.data:spring-data-mongodb")

Diff for: spring-boot-project/spring-boot-actuator/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ dependencies {
6868
optional("org.springframework.data:spring-data-cassandra") {
6969
exclude group: "org.slf4j", module: "jcl-over-slf4j"
7070
}
71-
optional("org.springframework.data:spring-data-couchbase")
71+
optional("org.springframework.data:spring-data-couchbase") {
72+
exclude(group: "javax.inject", module: "javax.inject")
73+
}
7274
optional("org.springframework.data:spring-data-elasticsearch") {
7375
exclude(group: "commons-logging", module: "commons-logging")
7476
}

Diff for: spring-boot-project/spring-boot-autoconfigure/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ dependencies {
142142
optional("org.springframework:spring-webflux")
143143
optional("org.springframework:spring-webmvc")
144144
optional("org.springframework.batch:spring-batch-core")
145-
optional("org.springframework.data:spring-data-couchbase")
145+
optional("org.springframework.data:spring-data-couchbase") {
146+
exclude(group: "javax.inject", module: "javax.inject")
147+
}
146148
optional("org.springframework.data:spring-data-envers") {
147149
exclude group: "javax.activation", module: "javax.activation-api"
148150
exclude group: "javax.persistence", module: "javax.persistence-api"

Diff for: spring-boot-project/spring-boot-docs/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ dependencies {
120120
implementation("org.springframework.amqp:spring-rabbit")
121121
implementation("org.springframework.batch:spring-batch-core")
122122
implementation("org.springframework.data:spring-data-cassandra")
123-
implementation("org.springframework.data:spring-data-couchbase")
123+
implementation("org.springframework.data:spring-data-couchbase") {
124+
exclude group: "javax.inject", module: "javax.inject"
125+
}
124126
implementation("org.springframework.data:spring-data-elasticsearch") {
125127
exclude group: "commons-logging", module: "commons-logging"
126128
}

Diff for: spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
77
dependencies {
88
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
99
api("io.projectreactor:reactor-core")
10-
api("org.springframework.data:spring-data-couchbase")
10+
api("org.springframework.data:spring-data-couchbase") {
11+
exclude group: "javax.inject", module: "javax.inject"
12+
}
1113
}

Diff for: spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
66

77
dependencies {
88
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
9-
api("org.springframework.data:spring-data-couchbase")
9+
api("org.springframework.data:spring-data-couchbase") {
10+
exclude group: "javax.inject", module: "javax.inject"
11+
}
1012
}

Diff for: spring-boot-project/spring-boot-test-autoconfigure/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ dependencies {
3838
optional("org.springframework.data:spring-data-cassandra") {
3939
exclude group: "org.slf4j", module: "jcl-over-slf4j"
4040
}
41-
optional("org.springframework.data:spring-data-couchbase")
41+
optional("org.springframework.data:spring-data-couchbase") {
42+
exclude group: "javax.inject", module: "javax.inject"
43+
}
4244
optional("org.springframework.data:spring-data-elasticsearch")
4345
optional("org.springframework.data:spring-data-jdbc")
4446
optional("org.springframework.data:spring-data-jpa")

0 commit comments

Comments
 (0)