diff options
author | Martin Ritchie <ritchiem@apache.org> | 2006-11-10 13:38:29 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2006-11-10 13:38:29 +0000 |
commit | 91fd2357727346bd313ce861a49c4625b3aafce3 (patch) | |
tree | 07302948bc42c581a610826d1944db7575f69db9 /java | |
parent | 634a05bb8419bf9b8626283baf50b7a1d859ccf4 (diff) | |
download | qpid-python-91fd2357727346bd313ce861a49c4625b3aafce3.tar.gz |
QPID-77 QPID-81
Set name of launcher back to <module>-launcher.jar to make the bin scripts easier to handle
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@473336 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r-- | java/module.xml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/java/module.xml b/java/module.xml index 2af973970d..844c6987dd 100644 --- a/java/module.xml +++ b/java/module.xml @@ -40,16 +40,15 @@ <filtermapper> <replacestring from="${file.separator}" to="-"/> </filtermapper> - <globmapper from="*" to="${prefix}*"/> - <globmapper from="*" to="*${suffix}"/> </map> - - <property name="module.jar" location="${module.dir}/${module.name}.jar"/> + <property name="dist.module.name" value="${prefix}${module.name}${suffix}" /> + + <property name="module.jar" location="${module.dir}/${dist.module.name}.jar"/> <property name="module.launcher" location="${module.dir}/${module.name}${launcher.sfx}"/> <property name="module.manifest" - location="${module.dir}/${module.name}.mf"/> + location="${module.dir}/${dist.module.name}.mf"/> <property name="module.doc" location="${module.dir}/${doc.dir}"/> <property name="module.src" location="${src.dir}"/> <property name="module.lib" location="${lib.dir}"/> @@ -101,7 +100,7 @@ </map> <property name="module.manifest.classpath" - value="${module.name}.jar ${module.manifest.jars} ${module.manifest.deps}"/> + value="${dist.module.name}.jar ${module.manifest.jars} ${module.manifest.deps}"/> <property name="module.test.reports" value="${module.dir}/reports/junit"/> |