diff options
| author | Robert Gemmell <robbie@apache.org> | 2012-05-11 15:36:49 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2012-05-11 15:36:49 +0000 |
| commit | f423571bb4239a65945e2bc52b2e64f9e2163042 (patch) | |
| tree | 4f125010b7a11e047ff17922102e6776dd6b0071 /java/common | |
| parent | 9bb5ada379722f35f12bce387cc71af1172bc2c5 (diff) | |
| download | qpid-python-f423571bb4239a65945e2bc52b2e64f9e2163042.tar.gz | |
QPID-3994: use Ivy to download the main component dependencies during the build, and the optional bdb-je dependency on request, enabling removal of the main component dependencies from the repository and the 'source release' artifacts.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1337211 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
| -rw-r--r-- | java/common/build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/java/common/build.xml b/java/common/build.xml index fe96f384d5..a78d6c4133 100644 --- a/java/common/build.xml +++ b/java/common/build.xml @@ -98,10 +98,15 @@ public class QpidBuildVersion </target> <target name="jms-selector"> + <copy tofile="${module.build}/javacc.jar" failonerror="true"> + <fileset dir="${project.root}/lib/required"> + <include name="javacc-*.jar"/> + </fileset> + </copy> <mkdir dir="${selector.output.dir}"/> <javacc target="src/main/grammar/SelectorParser.jj" outputdirectory="${selector.output.dir}" - javacchome="${project.root}/lib"/> + javacchome="${module.build}"/> </target> <target name="precompile" depends="gentools,jython,create-version,build-version,jms-selector"/> |
