Limit AMQP LatestDepTest to use last working version
Makes AMQP LatestDepTest not use the latest version because it uses a snapshot version of spring, causing error when downloading.
This commit is contained in:
parent
906feba94b
commit
9d7d40565a
|
@ -37,7 +37,9 @@ dependencies {
|
|||
testCompile deps.testcontainers
|
||||
|
||||
latestDepTestCompile group: 'com.rabbitmq', name: 'amqp-client', version: '+'
|
||||
latestDepTestCompile group: 'org.springframework.amqp', name: 'spring-rabbit', version: '+'
|
||||
// TODO: check next version of amqp to make sure the dependencies can be downloaded from maven and
|
||||
// revert back to using latest
|
||||
latestDepTestCompile group: 'org.springframework.amqp', name: 'spring-rabbit', version: '2.1.0.RELEASE'
|
||||
}
|
||||
|
||||
configurations.testRuntime {
|
||||
|
|
Loading…
Reference in New Issue