mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-08 03:08:53 +00:00
36a5a25a21
build.xml will now download Apache Ivy into the build tree. Ivy will then be used to download the other Java dependencies: log4j and Apache Commons Lang. This achieves the goal of allowing the Java library to be built from a clean checkout, without requiring users to manually obtain dependencies or checking external binaries into the source tree. The Ivy behavior (except for a few mkdir calls) can be inhibited by passing -Dnoivy= on the ant command line (or in a property file). In this case, log4j must be available in the user's CLASSPATH. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@769995 13f79535-47bb-0310-9956-ffa450edef68
8 lines
321 B
XML
8 lines
321 B
XML
<ivy-module version="1.0">
|
|
<info organisation="jayasoft" module="hello-ivy" />
|
|
<dependencies>
|
|
<dependency org="log4j" name="log4j" rev="1.2.15" conf="default->master"/>
|
|
<dependency org="commons-lang" name="commons-lang" rev="2.4" conf="* -> *,!sources,!javadoc"/>
|
|
</dependencies>
|
|
</ivy-module>
|