Skip to content

Commit 3bb7baf

Browse files
committed
Merge branch '3.1.x' into 3.2.x
See gh-40212
2 parents cae34a1 + 06f5ab1 commit 3bb7baf

File tree

7 files changed

+21
-7
lines changed

7 files changed

+21
-7
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ dependencies {
124124
optional("org.springframework.data:spring-data-cassandra") {
125125
exclude group: "org.slf4j", module: "jcl-over-slf4j"
126126
}
127-
optional("org.springframework.data:spring-data-couchbase")
127+
optional("org.springframework.data:spring-data-couchbase") {
128+
exclude(group: "javax.inject", module: "javax.inject")
129+
}
128130
optional("org.springframework.data:spring-data-jpa")
129131
optional("org.springframework.data:spring-data-ldap")
130132
optional("org.springframework.data:spring-data-mongodb")

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ dependencies {
6666
optional("org.springframework.data:spring-data-cassandra") {
6767
exclude group: "org.slf4j", module: "jcl-over-slf4j"
6868
}
69-
optional("org.springframework.data:spring-data-couchbase")
69+
optional("org.springframework.data:spring-data-couchbase") {
70+
exclude(group: "javax.inject", module: "javax.inject")
71+
}
7072
optional("org.springframework.data:spring-data-elasticsearch") {
7173
exclude(group: "commons-logging", module: "commons-logging")
7274
}

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,9 @@ dependencies {
147147
optional("org.springframework:spring-webflux")
148148
optional("org.springframework:spring-webmvc")
149149
optional("org.springframework.batch:spring-batch-core")
150-
optional("org.springframework.data:spring-data-couchbase")
150+
optional("org.springframework.data:spring-data-couchbase") {
151+
exclude(group: "javax.inject", module: "javax.inject")
152+
}
151153
optional("org.springframework.data:spring-data-envers") {
152154
exclude group: "javax.activation", module: "javax.activation-api"
153155
exclude group: "javax.persistence", module: "javax.persistence-api"

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ dependencies {
145145
implementation("org.springframework.amqp:spring-rabbit")
146146
implementation("org.springframework.batch:spring-batch-core")
147147
implementation("org.springframework.data:spring-data-cassandra")
148-
implementation("org.springframework.data:spring-data-couchbase")
148+
implementation("org.springframework.data:spring-data-couchbase") {
149+
exclude group: "javax.inject", module: "javax.inject"
150+
}
149151
implementation("org.springframework.data:spring-data-elasticsearch") {
150152
exclude group: "commons-logging", module: "commons-logging"
151153
}

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
}

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
}

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)