@@ -157,7 +157,6 @@ allprojects {
157
157
158
158
imports {
159
159
mavenBom " com.fasterxml.jackson:jackson-bom:$jacksonVersion "
160
- mavenBom " io.debezium:debezium-bom:$debeziumVersion "
161
160
mavenBom " io.micrometer:micrometer-bom:$micrometerVersion "
162
161
mavenBom " io.micrometer:micrometer-tracing-bom:$micrometerTracingVersion "
163
162
mavenBom " io.projectreactor:reactor-bom:$reactorVersion "
@@ -256,8 +255,6 @@ configure(javaProjects) { subproject ->
256
255
}
257
256
}
258
257
259
- testImplementation " org.assertj:assertj-core:$assertjVersion "
260
-
261
258
// JSR-305 only used for non-required meta-annotations
262
259
compileOnly " com.google.code.findbugs:annotations:$findbugsVersion "
263
260
testImplementation " com.google.code.findbugs:annotations:$findbugsVersion "
@@ -584,15 +581,15 @@ project('spring-integration-debezium') {
584
581
description = ' Spring Integration Debezium Support'
585
582
dependencies {
586
583
api project(' :spring-integration-core' )
587
- api(' io.debezium:debezium-embedded' ) {
584
+ api(" io.debezium:debezium-embedded: $d ebeziumVersion " ) {
588
585
exclude group : ' org.glassfish.jersey.containers' , module : ' jersey-container-servlet'
589
586
exclude group : ' org.glassfish.jersey.inject' , module : ' jersey-hk2'
590
587
exclude group : ' jakarta.xml.bind' , module : ' jakarta.xml.bind-api'
591
588
exclude group : ' jakarta.activation' , module : ' jakarta.activation-api'
592
589
exclude group : ' javax.activation' , module : ' javax.activation-api'
593
590
}
594
591
595
- testImplementation ' io.debezium:debezium-connector-mysql'
592
+ testImplementation " io.debezium:debezium-connector-mysql: $d ebeziumVersion "
596
593
testImplementation ' org.testcontainers:mysql'
597
594
}
598
595
}
@@ -954,6 +951,7 @@ project('spring-integration-stomp') {
954
951
testImplementation project(' :spring-integration-event' )
955
952
testImplementation(" org.apache.activemq:artemis-stomp-protocol:$artemisVersion " ) {
956
953
exclude group : ' org.jboss.logmanager'
954
+ exclude group : ' io.netty'
957
955
}
958
956
testImplementation " org.apache.tomcat.embed:tomcat-embed-websocket:$tomcatVersion "
959
957
testImplementation ' com.fasterxml.jackson.core:jackson-databind'
0 commit comments