Skip to content

Commit 93c8513

Browse files
committed
Merge branch '3.2.x'
See gh-40224
2 parents 0ed6864 + 7d3ea3f commit 93c8513

File tree

7 files changed

+7
-21
lines changed

7 files changed

+7
-21
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,7 @@ 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") {
126-
exclude(group: "javax.inject", module: "javax.inject")
127-
}
125+
optional("org.springframework.data:spring-data-couchbase")
128126
optional("org.springframework.data:spring-data-jpa")
129127
optional("org.springframework.data:spring-data-ldap")
130128
optional("org.springframework.data:spring-data-mongodb")

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ 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") {
72-
exclude(group: "javax.inject", module: "javax.inject")
73-
}
71+
optional("org.springframework.data:spring-data-couchbase")
7472
optional("org.springframework.data:spring-data-elasticsearch") {
7573
exclude(group: "commons-logging", module: "commons-logging")
7674
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,7 @@ 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") {
146-
exclude(group: "javax.inject", module: "javax.inject")
147-
}
145+
optional("org.springframework.data:spring-data-couchbase")
148146
optional("org.springframework.data:spring-data-envers") {
149147
exclude group: "javax.activation", module: "javax.activation-api"
150148
exclude group: "javax.persistence", module: "javax.persistence-api"

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,7 @@ 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") {
124-
exclude group: "javax.inject", module: "javax.inject"
125-
}
123+
implementation("org.springframework.data:spring-data-couchbase")
126124
implementation("org.springframework.data:spring-data-elasticsearch") {
127125
exclude group: "commons-logging", module: "commons-logging"
128126
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,5 @@ 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") {
11-
exclude group: "javax.inject", module: "javax.inject"
12-
}
10+
api("org.springframework.data:spring-data-couchbase")
1311
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@ 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") {
10-
exclude group: "javax.inject", module: "javax.inject"
11-
}
9+
api("org.springframework.data:spring-data-couchbase")
1210
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ 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") {
42-
exclude group: "javax.inject", module: "javax.inject"
43-
}
41+
optional("org.springframework.data:spring-data-couchbase")
4442
optional("org.springframework.data:spring-data-elasticsearch")
4543
optional("org.springframework.data:spring-data-jdbc")
4644
optional("org.springframework.data:spring-data-jpa")

0 commit comments

Comments
 (0)