File tree 8 files changed +29
-8
lines changed
spring-boot-actuator-autoconfigure
spring-boot-autoconfigure
spring-boot-starter-data-couchbase
spring-boot-starter-data-couchbase-reactive
spring-boot-test-autoconfigure
8 files changed +29
-8
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,10 @@ dependencies {
140
140
optional(" org.springframework.data:spring-data-cassandra" ) {
141
141
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
142
142
}
143
- optional(" org.springframework.data:spring-data-couchbase" )
143
+ optional(" org.springframework.data:spring-data-couchbase" ) {
144
+ exclude group : " com.querydsl" , module : " querydsl-apt"
145
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
146
+ }
144
147
optional(" org.springframework.data:spring-data-jpa" )
145
148
optional(" org.springframework.data:spring-data-ldap" )
146
149
optional(" org.springframework.data:spring-data-mongodb" )
Original file line number Diff line number Diff line change @@ -72,7 +72,10 @@ dependencies {
72
72
optional(" org.springframework.data:spring-data-cassandra" ) {
73
73
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
74
74
}
75
- optional(" org.springframework.data:spring-data-couchbase" )
75
+ optional(" org.springframework.data:spring-data-couchbase" ) {
76
+ exclude group : " com.querydsl" , module : " querydsl-apt"
77
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
78
+ }
76
79
optional(" org.springframework.data:spring-data-elasticsearch" ) {
77
80
exclude(group : " commons-logging" , module : " commons-logging" )
78
81
}
Original file line number Diff line number Diff line change @@ -168,7 +168,10 @@ dependencies {
168
168
optional(" org.springframework:spring-webflux" )
169
169
optional(" org.springframework:spring-webmvc" )
170
170
optional(" org.springframework.batch:spring-batch-core" )
171
- optional(" org.springframework.data:spring-data-couchbase" )
171
+ optional(" org.springframework.data:spring-data-couchbase" ) {
172
+ exclude group : " com.querydsl" , module : " querydsl-apt"
173
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
174
+ }
172
175
optional(" org.springframework.data:spring-data-envers" ) {
173
176
exclude group : " javax.activation" , module : " javax.activation-api"
174
177
exclude group : " javax.persistence" , module : " javax.persistence-api"
Original file line number Diff line number Diff line change @@ -1692,7 +1692,7 @@ bom {
1692
1692
]
1693
1693
}
1694
1694
}
1695
- library(" Spring Data Bom" , " 2021.2.0-M4 " ) {
1695
+ library(" Spring Data Bom" , " 2021.2.0-RC1 " ) {
1696
1696
prohibit(" [2022.0.0-M1,)" ) {
1697
1697
because " it uses Spring Framework 6"
1698
1698
}
Original file line number Diff line number Diff line change @@ -129,7 +129,10 @@ dependencies {
129
129
implementation(" org.springframework.amqp:spring-rabbit" )
130
130
implementation(" org.springframework.batch:spring-batch-core" )
131
131
implementation(" org.springframework.data:spring-data-cassandra" )
132
- implementation(" org.springframework.data:spring-data-couchbase" )
132
+ implementation(" org.springframework.data:spring-data-couchbase" ) {
133
+ exclude group : " com.querydsl" , module : " querydsl-apt"
134
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
135
+ }
133
136
implementation(" org.springframework.data:spring-data-elasticsearch" ) {
134
137
exclude group : " commons-logging" , module : " commons-logging"
135
138
}
Original file line number Diff line number Diff line change @@ -8,5 +8,8 @@ dependencies {
8
8
api(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter" ))
9
9
api(" io.projectreactor:reactor-core" )
10
10
api(" io.reactivex:rxjava-reactive-streams" )
11
- api(" org.springframework.data:spring-data-couchbase" )
11
+ api(" org.springframework.data:spring-data-couchbase" ) {
12
+ exclude group : " com.querydsl" , module : " querydsl-apt"
13
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
14
+ }
12
15
}
Original file line number Diff line number Diff line change @@ -6,5 +6,8 @@ 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 : " com.querydsl" , module : " querydsl-apt"
11
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
12
+ }
10
13
}
Original file line number Diff line number Diff line change @@ -48,7 +48,10 @@ dependencies {
48
48
optional(" org.springframework.data:spring-data-cassandra" ) {
49
49
exclude group : " org.slf4j" , module : " jcl-over-slf4j"
50
50
}
51
- optional(" org.springframework.data:spring-data-couchbase" )
51
+ optional(" org.springframework.data:spring-data-couchbase" ) {
52
+ exclude group : " com.querydsl" , module : " querydsl-apt"
53
+ exclude group : " javax.annotation" , module : " javax.annotation-api"
54
+ }
52
55
optional(" org.springframework.data:spring-data-elasticsearch" )
53
56
optional(" org.springframework.data:spring-data-jdbc" )
54
57
optional(" org.springframework.data:spring-data-jpa" )
You can’t perform that action at this time.
0 commit comments