@@ -72,6 +72,7 @@ subprojects { subproject ->
72
72
ext {
73
73
assertjVersion = ' 3.9.1'
74
74
assertkVersion = ' 0.10'
75
+ commonsHttpClientVersion = ' 4.5.5'
75
76
hamcrestVersion = ' 1.3'
76
77
jackson2Version = ' 2.9.5'
77
78
junit4Version = ' 4.12'
@@ -81,7 +82,7 @@ subprojects { subproject ->
81
82
logbackVersion = ' 1.2.3'
82
83
mockitoVersion = ' 2.18.0'
83
84
rabbitmqVersion = project. hasProperty(' rabbitmqVersion' ) ? project. rabbitmqVersion : ' 5.2.0'
84
- rabbitmqHttpClientVersion = ' 2.0.1 .RELEASE'
85
+ rabbitmqHttpClientVersion = ' 2.1.0 .RELEASE'
85
86
86
87
springVersion = project. hasProperty(' springVersion' ) ? project. springVersion : ' 5.1.0.BUILD-SNAPSHOT'
87
88
@@ -253,28 +254,28 @@ project('spring-rabbit') {
253
254
compile project(" :spring-amqp" )
254
255
255
256
compile " com.rabbitmq:amqp-client:$rabbitmqVersion "
256
- compile (" com.rabbitmq:http-client:$rabbitmqHttpClientVersion " ) {
257
- exclude group : ' org.springframework' , module : ' spring-web'
258
- }
257
+ compile " com.rabbitmq:http-client:$rabbitmqHttpClientVersion "
259
258
260
259
compile (" org.springframework:spring-aop:$springVersion " , optional)
261
260
compile " org.springframework:spring-context:$springVersion "
262
261
compile " org.springframework:spring-messaging:$springVersion "
263
262
compile " org.springframework:spring-tx:$springVersion "
264
- compile " org.springframework:spring-web:$springVersion "
265
263
266
264
compile " org.springframework.retry:spring-retry:$springRetryVersion "
267
265
268
266
compile (" ch.qos.logback:logback-classic:$logbackVersion " , optional)
269
267
270
268
compile (" org.apache.logging.log4j:log4j-core:$log4jVersion " , optional)
271
269
270
+ testCompile project(" :spring-rabbit-junit" )
272
271
testCompile " org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion "
273
- testRuntime " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
274
272
testCompile(" com.willowtreeapps.assertk:assertk:$assertkVersion " ) {
275
273
exclude group : ' org.jetbrains.kotlin' , module : ' kotlin-reflect'
276
274
}
277
- testCompile project(" :spring-rabbit-junit" )
275
+
276
+ testRuntime " org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion "
277
+ testRuntime " org.springframework:spring-web:$springVersion "
278
+ testRuntime " org.apache.httpcomponents:httpclient:$commonsHttpClientVersion "
278
279
}
279
280
280
281
compileTestKotlin {
0 commit comments