RabbitMQ River: Upgrade to rabbitmq driver 2.5.1, closes #1112.

This commit is contained in:
kimchy 2011-07-10 04:22:20 +03:00
parent 23a35a0809
commit a8d8eb686e
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
<library name="rabbitmq">
<CLASSES>
<root url="jar://$GRADLE_REPOSITORY$/commons-io/commons-io/jars/commons-io-1.2.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/com.rabbitmq/amqp-client/jars/amqp-client-2.3.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/com.rabbitmq/amqp-client/jars/amqp-client-2.5.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />

View File

@ -33,9 +33,9 @@ configurations {
dependencies {
compile project(':elasticsearch')
compile('com.rabbitmq:amqp-client:2.3.1') { transitive = false }
compile('com.rabbitmq:amqp-client:2.5.1') { transitive = false }
compile("commons-io:commons-io:1.2") { transitive = false }
distLib('com.rabbitmq:amqp-client:2.3.1') { transitive = false }
distLib('com.rabbitmq:amqp-client:2.5.1') { transitive = false }
distLib("commons-io:commons-io:1.2") { transitive = false }
}