File tree 7 files changed +21
-7
lines changed
spring-boot-actuator-autoconfigure
spring-boot-autoconfigure
spring-boot-starter-data-couchbase
spring-boot-starter-data-couchbase-reactive
spring-boot-test-autoconfigure
7 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,9 @@ dependencies {
124
124
optional(" org.springframework.data:spring-data-cassandra" ) {
125
125
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
126
126
}
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
+ }
128
130
optional(" org.springframework.data:spring-data-jpa" )
129
131
optional(" org.springframework.data:spring-data-ldap" )
130
132
optional(" org.springframework.data:spring-data-mongodb" )
Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ dependencies {
66
66
optional(" org.springframework.data:spring-data-cassandra" ) {
67
67
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
68
68
}
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
+ }
70
72
optional(" org.springframework.data:spring-data-elasticsearch" ) {
71
73
exclude(group : " commons-logging" , module : " commons-logging" )
72
74
}
Original file line number Diff line number Diff line change @@ -147,7 +147,9 @@ dependencies {
147
147
optional(" org.springframework:spring-webflux" )
148
148
optional(" org.springframework:spring-webmvc" )
149
149
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
+ }
151
153
optional(" org.springframework.data:spring-data-envers" ) {
152
154
exclude group : " javax.activation" , module : " javax.activation-api"
153
155
exclude group : " javax.persistence" , module : " javax.persistence-api"
Original file line number Diff line number Diff line change @@ -145,7 +145,9 @@ dependencies {
145
145
implementation(" org.springframework.amqp:spring-rabbit" )
146
146
implementation(" org.springframework.batch:spring-batch-core" )
147
147
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
+ }
149
151
implementation(" org.springframework.data:spring-data-elasticsearch" ) {
150
152
exclude group : " commons-logging" , module : " commons-logging"
151
153
}
Original file line number Diff line number Diff line change @@ -7,5 +7,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
7
7
dependencies {
8
8
api(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter" ))
9
9
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
+ }
11
13
}
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ description = "Starter for using Couchbase document-oriented database and Spring
6
6
7
7
dependencies {
8
8
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
+ }
10
12
}
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ dependencies {
38
38
optional(" org.springframework.data:spring-data-cassandra" ) {
39
39
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
40
40
}
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
+ }
42
44
optional(" org.springframework.data:spring-data-elasticsearch" )
43
45
optional(" org.springframework.data:spring-data-jdbc" )
44
46
optional(" org.springframework.data:spring-data-jpa" )
You can’t perform that action at this time.
0 commit comments