2 # Parent 2b3eae08cf81c23c638fa2e628fe3b2f848550b1
4 diff --git a/lib/java/build.xml b/lib/java/build.xml
5 --- a/lib/java/build.xml
6 +++ b/lib/java/build.xml
8 <artifact:writepom pomRefId="pom" file="${pom.xml}"/>
10 <!-- Download the dependencies -->
11 - <artifact:dependencies filesetId="build-dependency-jars" pomRefId="pom"/>
12 + <artifact:dependencies filesetId="build-dependency-jars" pomRefId="pom">
13 + <localRepository path="${basedir}/local-repo"/>
14 + </artifact:dependencies>
16 <!-- Copy the dependencies to the build/lib dir -->
17 <copy todir="${build.dir}/lib">
20 <!-- Dependencies needed for testing -->
21 <artifact:dependencies filesetId="test-dependency-jars" useScope="runtime">
22 + <localRepository path="${basedir}/local-repo"/>
23 <dependency groupId="org.slf4j" artifactId="slf4j-log4j12" version="1.5.8"/>
24 <dependency groupId="junit" artifactId="junit" version="4.4"/>
25 </artifact:dependencies>