summaryrefslogtreecommitdiff
path: root/java/client/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/client/build.xml')
-rw-r--r--java/client/build.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/client/build.xml b/java/client/build.xml
index 1fb980b908..aeadfa2f0f 100644
--- a/java/client/build.xml
+++ b/java/client/build.xml
@@ -21,7 +21,7 @@
<project name="AMQ Client" default="build">
<property name="module.depends" value="common"/>
- <property name="module.test.depends" value="broker"/>
+ <property name="module.test.depends" value="broker junit-toolkit"/>
<import file="../module.xml"/>
@@ -29,9 +29,9 @@
<target name="precompile">
<mkdir dir="${output.dir}"/>
- <exec executable="javacc">
- <arg line="-OUTPUT_DIRECTORY=${output.dir} src/main/grammar/SelectorParser.jj"/>
- </exec>
+ <javacc target="src/main/grammar/SelectorParser.jj"
+ outputdirectory="${output.dir}"
+ javacchome="${project.root}/lib"/>
</target>
</project>