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:
Gary 2018-11-09 11:09:04 -05:00
parent 906feba94b
commit 9d7d40565a
No known key found for this signature in database
GPG Key ID: 0CB168EE6C6844B7
1 changed files with 3 additions and 1 deletions

View File

@ -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 {