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 | |
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
-rw-r--r-- | build.properties | 1 | ||||
-rw-r--r-- | build.xml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/build.properties b/build.properties index 0cbeba0..dbd908a 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,6 @@ project.name=ant-contrib
project.version=dev
+jar.name=${project.name}.jar
ivy.deliver.revision=${project.version}
jdk.source=1.4
jdk.target=1.4
@@ -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}" />
|