<project name="simpack" default="jar" basedir=".">
<description>
This is the JAR build file of SimPack from the University of Zurich, Switzerland.
</description>
<property name="version" value="0.91"/>
<property name="project.source.directory" value="src/"/>
<property name="project.external.library.directory" value="lib/"/>
<property name="build.class.directory" value="bin/"/>
<!-- Project distribution directory --><propertyname="project.dist.directory"value="dist/"/><!-- Path containing external libraries (*.jar) --><pathid="master-classpath"><filesetdir="${project.external.library.directory}"includes="**/*.jar"/></path><!-- Target to compile source code --><targetname="compile"description="Compile the source code and put .class files in output "><mkdirdir="${build.class.directory}"/><javacsrcdir="${project.source.directory}"destdir="${build.class.directory}"><classpathrefid="master-classpath"/></javac></target><!-- Target to export JAR/Executable JAR --><targetname="jar"><mkdirdir="${project.dist.directory}"/><mkdirdir="${project.dist.directory}/jar"/><jardestfile="${project.dist.directory}/jar/simpack-${version}.jar"basedir="${build.class.directory}"><!-- Includes all JAR files in lib directory --><filesetdir="${project.external.library.directory}"includes="**/*.jar"/><!-- For executable JAR only--><!--manifest><attributename="Main-Class"value="irit.java.eclipse.buildClassPath"/> </manifest--></jar></target><targetname="run"><javajar="${project.dist.directory}/jar/simpack-${version}.jar"fork="true"/></target><!-- Clean everyting in bin --><targetname="clean"><deletedir="bin"/></target>
</project>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
</project>