From 9d7d40565a820c043ed6a8d23c558cb8e4200626 Mon Sep 17 00:00:00 2001 From: Gary Date: Fri, 9 Nov 2018 11:09:04 -0500 Subject: [PATCH] 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. --- .../rabbitmq-amqp-2.7/rabbitmq-amqp-2.7.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dd-java-agent/instrumentation/rabbitmq-amqp-2.7/rabbitmq-amqp-2.7.gradle b/dd-java-agent/instrumentation/rabbitmq-amqp-2.7/rabbitmq-amqp-2.7.gradle index df36e2cd19..cd4eda1aa9 100644 --- a/dd-java-agent/instrumentation/rabbitmq-amqp-2.7/rabbitmq-amqp-2.7.gradle +++ b/dd-java-agent/instrumentation/rabbitmq-amqp-2.7/rabbitmq-amqp-2.7.gradle @@ -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 {