File tree Expand file tree Collapse file tree 7 files changed +21
-7
lines changed
spring-boot-actuator-autoconfigure
spring-boot-autoconfigure
spring-boot-starter-data-couchbase-reactive
spring-boot-starter-data-couchbase
spring-boot-test-autoconfigure Expand file tree Collapse file tree 7 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,9 @@ dependencies {
123123 optional(" org.springframework.data:spring-data-cassandra" ) {
124124 exclude group : " org.slf4j" , module : " jcl-over-slf4j"
125125 }
126- optional(" org.springframework.data:spring-data-couchbase" )
126+ optional(" org.springframework.data:spring-data-couchbase" ) {
127+ exclude(group : " javax.inject" , module : " javax.inject" )
128+ }
127129 optional(" org.springframework.data:spring-data-jpa" )
128130 optional(" org.springframework.data:spring-data-ldap" )
129131 optional(" org.springframework.data:spring-data-mongodb" )
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -155,7 +155,9 @@ dependencies {
155155 optional(" org.springframework:spring-webflux" )
156156 optional(" org.springframework:spring-webmvc" )
157157 optional(" org.springframework.batch:spring-batch-core" )
158- optional(" org.springframework.data:spring-data-couchbase" )
158+ optional(" org.springframework.data:spring-data-couchbase" ) {
159+ exclude(group : " javax.inject" , module : " javax.inject" )
160+ }
159161 optional(" org.springframework.data:spring-data-envers" ) {
160162 exclude group : " javax.activation" , module : " javax.activation-api"
161163 exclude group : " javax.persistence" , module : " javax.persistence-api"
Original file line number Diff line number Diff line change @@ -132,7 +132,9 @@ dependencies {
132132 implementation(" org.springframework.amqp:spring-rabbit" )
133133 implementation(" org.springframework.batch:spring-batch-core" )
134134 implementation(" org.springframework.data:spring-data-cassandra" )
135- implementation(" org.springframework.data:spring-data-couchbase" )
135+ implementation(" org.springframework.data:spring-data-couchbase" ) {
136+ exclude group : " javax.inject" , module : " javax.inject"
137+ }
136138 implementation(" org.springframework.data:spring-data-elasticsearch" ) {
137139 exclude group : " commons-logging" , module : " commons-logging"
138140 }
Original file line number Diff line number Diff line change @@ -7,5 +7,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
77dependencies {
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}
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
66
77dependencies {
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}
Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments