diff options
-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}" />
|