update to rabbitmq client 2.3.1

This commit is contained in:
kimchy 2011-03-15 10:08:08 +02:00
parent 1bcd3b67ee
commit 367c9562c6
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.2.0.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/com.rabbitmq/amqp-client/jars/amqp-client-2.3.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />

View File

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