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 | 9b5723a1f2a3b72c81c143f78d7b8dc5ee6b7271 (patch) | |
| tree | 7a71d4b9db6fe7054fd234f2a03477c7b2352180 /qpid/java/module.xml | |
| parent | e0b22df37ecacc0c807e07b76280765ecf0343d5 (diff) | |
| download | qpid-python-9b5723a1f2a3b72c81c143f78d7b8dc5ee6b7271.tar.gz | |
QPID-5162: move the bdbstore-specific systests to their own module
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1525741 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/module.xml')
| -rw-r--r-- | qpid/java/module.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/qpid/java/module.xml b/qpid/java/module.xml index 7dc66f3929..3bd9f7381c 100644 --- a/qpid/java/module.xml +++ b/qpid/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/**"/> |
