diff options
author | bodewig <[email protected]> | 2006-09-27 03:37:17 +0000 |
---|---|---|
committer | bodewig <[email protected]> | 2006-09-27 03:37:17 +0000 |
commit | 3ca3ee55f5e37e17222c2e3865950554c8c87671 (patch) | |
tree | b4fb46f9f65de4d196d90e8431e9ab752891ec5a /build.xml | |
parent | 87ab2d193e5bf7b35e828a18324184c59624af0e (diff) |
allow Gump to override jar name
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@48 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,7 +97,7 @@ <tstamp>
<format property="tstamp" pattern="dd/MM/yyyy HH:mm:ss" />
</tstamp>
- <jar file="${target.dir}/${project.name}.jar">
+ <jar file="${target.dir}/${jar.name}">
<manifest>
<attribute name="Version" value="${project.version}"/>
<attribute name="Build-Timestamp" value="${tstamp}"/>
@@ -225,7 +225,7 @@ <exclude name="**/antclipse/**" unless="eclipse.present"/>
</fileset>
</batchtest>
- <sysproperty key="antcontrib.jar" file="${target.dir}/${project.name}.jar"/>
+ <sysproperty key="antcontrib.jar" file="${target.dir}/${jar.name}"/>
<classpath>
<path refid="test.classpath" />
<pathelement location="${target.classes.dir}" />
|