Skip to content

Commit

Permalink
update terris and cosrin urls and ips
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsiar committed Mar 11, 2024
1 parent dc2e751 commit 375fbb9
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<property name="path.build.classes" location="bin/classes" />
<property name="path.src.resources" location="src/resources" />
<property name="path.dist" location="dist" />
<property name="path.release" location="release" />
<property name="path.build.lib" value="bin/lib" />
<property name ="path.src.lib" value="src/lib" />
<path id="compile.classpath">
Expand All @@ -29,10 +30,10 @@
<fileset dir="${path.src.lib}"/>
</copy>

<javac srcdir="${path.src}" destdir="${path.build.classes}">
<javac srcdir="${path.src}" destdir="${path.build.classes}" target="7" source="7">
<classpath refid="compile.classpath" />
</javac>
<pathconvert property="mf.classpath" pathsep=" " >
<pathconvert property="mf.classpath" pathsep=" " >
<path refid="compile.classpath" />
<chainedmapper>
<flattenmapper/>
Expand Down Expand Up @@ -65,10 +66,23 @@

</target>

<target name="zip" depends="dist"
description="generate the release zip" >

<zip destfile="${path.release}/kilcli-release.zip"
whenempty="fail"
level="9"
duplicate="fail">
<zipfileset dir="${path.dist}" excludes="**/*.log" prefix="kilcli"/>
</zip>

</target>

<target name="clean"
description="clean up" >
<!-- Delete the ${build} and ${dist} directory trees -->
<!-- Delete the output directory trees -->
<delete dir="${path.build}"/>
<delete dir="${path.dist}"/>
<delete dir="${path.release}"/>
</target>
</project>

0 comments on commit 375fbb9

Please sign in to comment.