summaryrefslogtreecommitdiff
blob: 1ce5974427b7fe3cc84a643e76bb8125b0872670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/maven-build.xml
+++ b/maven-build.xml
@@ -125,7 +125,7 @@
 
   <target name="compile" depends="get-deps" description="Compile the code">
     <mkdir dir="${maven.build.outputDir}"/>
-    <javac destdir="${maven.build.outputDir}" 
+    <javac destdir="${maven.build.outputDir}" classpath="${gentoo.classpath}"
            nowarn="false" 
            debug="true" 
            optimize="false" 
@@ -153,7 +153,7 @@
           description="Compile the test code" 
           unless="maven.test.skip">
     <mkdir dir="${maven.build.testOutputDir}"/>
-    <javac destdir="${maven.build.testOutputDir}" 
+    <javac destdir="${maven.build.testOutputDir}" classpath="${gentoo.test.classpath}"
            nowarn="false" 
            debug="true" 
            optimize="false"