Skip to content

Commit

Permalink
Add RabbitMQ client library fetch script, add to classpath in build.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnewman committed Nov 7, 2009
1 parent f9f13dc commit 09b963b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
<path location="${contrib.jar}"/>
<path location="${build.dir}"/>
<path location="${source.dir}"/>

<path location="lib/commons-cli-1.1.jar"/>
<path location="lib/commons-io-1.2.jar"/>
<path location="lib/rabbitmq-client.jar"/>
</classpath>
<sysproperty key="clojure.compile.path" value="${build.dir}"/>
<arg value="com.github.icylisper.rabbitmq"/>
Expand Down
8 changes: 8 additions & 0 deletions fetchdeps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
mkdir -p lib
cd lib
wget http://www.rabbitmq.com/releases/rabbitmq-java-client/v1.7.0/rabbitmq-java-client-bin-1.7.0.tar.gz
tar xzf rabbitmq-java-client-bin-1.7.0.tar.gz
mv rabbitmq-java-client-bin-1.7.0/commons-cli-1.1.jar .
mv rabbitmq-java-client-bin-1.7.0/commons-io-1.2.jar .
mv rabbitmq-java-client-bin-1.7.0/rabbitmq-client.jar .
rm -r rabbitmq-java-client-bin-1.7.0*

0 comments on commit 09b963b

Please sign in to comment.