diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-09-23 23:45:59 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-09-23 23:45:59 +0000 |
| commit | 1a816ecc956b58e2fa719e46e6055cc06cc01fb9 (patch) | |
| tree | fa87816016deb571e66c808f6eda4d95edcc2b5c /java/module.xml | |
| parent | cfa418acc461fc767b6250902782380ee29235ae (diff) | |
| download | qpid-python-1a816ecc956b58e2fa719e46e6055cc06cc01fb9.tar.gz | |
QPID-5162: move the bdbstore-specific systests to their own module
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1525741 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/module.xml')
| -rw-r--r-- | java/module.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/module.xml b/java/module.xml index 7dc66f3929..3bd9f7381c 100644 --- a/java/module.xml +++ b/java/module.xml @@ -537,7 +537,14 @@ </copy> </target> - <target name="copy-resources" if="module.src.resources.exists"> + <target name="copy-extra-resources" if="module.src.resources.extra"> + <echo message="Copying extra resources from ${module.src.resources.extra} to ${module.classes}..."/> + <copy todir="${module.classes}" failonerror="true"> + <fileset dir="${module.src.resources.extra}"/> + </copy> + </target> + + <target name="copy-resources" depends="copy-extra-resources" if="module.src.resources.exists"> <echo message="Copying resources from ${module.src.resources} to ${module.classes}..."/> <copy todir="${module.classes}" failonerror="true"> <fileset dir="${module.src.resources}" excludes="META-INF/**"/> |
