Skip to content

Commit e27bc73

Browse files
author
David Kaiser
committed
naming jar file output with java version
1 parent abcc633 commit e27bc73

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<property name="dir.javadoc" value="javadoc" />
88
<property name="dir.result" value="results" />
99
<property name="dir.root" value="." />
10+
<property name="file.jar.name" value="esri-geometry-api-java${ant.java.version}.jar" />
1011

1112
<path id="project.classpath">
12-
<pathelement location="${dir.root}/DepFiles/Esri/jsg_sdk.jar" />
1313
<pathelement location="${dir.root}/DepFiles/public/jackson-core-asl-1.9.11.jar" />
1414
<pathelement location="${dir.root}/DepFiles/unittest/jersey-client-1.5.jar" />
1515
<pathelement location="${dir.root}/DepFiles/unittest/jersey-core-1.5.jar" />
@@ -30,8 +30,8 @@
3030
</target>
3131

3232
<target name="jar" depends="build">
33-
<delete file="esri-geometry-api.jar" />
34-
<jar destfile="esri-geometry-api.jar" compress="false" keepcompression="false">
33+
<delete file="${file.jar.name}" />
34+
<jar destfile="${file.jar.name}" compress="false" keepcompression="false">
3535
<fileset dir="${dir.build}" />
3636
<fileset dir="${dir.src}" />
3737
</jar>
@@ -56,7 +56,7 @@
5656
<jvmarg value="-Xss2m" />
5757
<classpath refid="project.classpath" />
5858
<sysproperty key="dir.report.test" value="${dir.result.today}" />
59-
<sysproperty key="arcgis.version.target" value="10.1.2" />
59+
<sysproperty key="arcgis.version.target" value="10.2" />
6060
<sysproperty key="arcgis.product.target" value="desktop" />
6161
<formatter type="xml" />
6262
<batchtest todir="${dir.result.today}/xml" fork="yes">

0 commit comments

Comments
 (0)