Skip to content

Commit 0ed88c3

Browse files
committed
Fix spring-web dependency for AMQP module
A `spring-web` dependecy has been placed into a `compile` configuration by mistake - it must in the `testCompile`
1 parent ce85b64 commit 0ed88c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ project('spring-integration-amqp') {
378378
exclude group: 'org.springframework'
379379
}
380380
testCompile project(":spring-integration-stream")
381-
compile "org.springframework:spring-web:$springVersion"
381+
testCompile "org.springframework:spring-web:$springVersion"
382382
}
383383
}
384384

0 commit comments

Comments
 (0)