We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a56469b commit ece6030Copy full SHA for ece6030
build.gradle
@@ -183,7 +183,9 @@ project ('spring-kafka') {
183
compile "org.springframework:spring-context:$springVersion"
184
compile "org.springframework:spring-messaging:$springVersion"
185
compile "org.springframework:spring-tx:$springVersion"
186
- compile "org.springframework.retry:spring-retry:$springRetryVersion"
+ compile ("org.springframework.retry:spring-retry:$springRetryVersion") {
187
+ exclude group: 'org.springframework', module: 'spring-core'
188
+ }
189
compile ("org.apache.kafka:kafka-clients:$kafkaVersion") {
190
exclude group: 'org.slf4j', module: 'slf4j-api'
191
}
0 commit comments