L-System/build.xml

65 lines
3.1 KiB
XML
Raw Permalink Normal View History

2021-02-15 18:33:24 +01:00
<project name="l-system" default="packaging" basedir=".">
<property name="project.sources.dir" value="src"/>
<property name="project.bin.dir" value="bin"/>
<property name="project.lib.dir" value="lib"/>
<property name="project.resources.dir" value="resources"/>
<property name="project.test.dir" value="test"/>
2021-02-15 18:33:24 +01:00
<path id="project.classpath">
<fileset dir="${project.lib.dir}">
<include name="*/*.jar"/>
</fileset>
<pathelement location="${project.bin.dir}"/>
</path>
<target name="compile" description="Compilation des classes" depends="init">
<javac srcdir="${project.sources.dir}" encoding="utf8" destdir="${project.bin.dir}" debug="on" optimize="on" deprecation="on" includeantruntime="false">
<classpath refid="project.classpath"/>
</javac>
<javac srcdir="${project.test.dir}" encoding="utf8" destdir="${project.bin.dir}" optimize="on" includeantruntime="false">
2021-02-15 18:33:24 +01:00
<classpath refid="project.classpath"/>
</javac>
<copy todir="${basedir}/${project.bin.dir}">
<fileset dir="${basedir}/${project.resources.dir}">
<exclude name="**/*.java"/>
</fileset>
</copy>
2021-02-15 18:33:24 +01:00
</target>
<target name="init">
<echo message="Initialisation de ${ant.project.name}"/>
<mkdir dir="${basedir}/${project.bin.dir}"/>
2021-02-15 18:33:24 +01:00
</target>
<target name="run" description="execution" depends="compile">
<java classname="lsystem.Main" fork="true">
<jvmarg value="-ea"/>
<jvmarg value="-Dfile.encoding=UTF-8"/>
<jvmarg value="-XX:+UseG1GC"/>
<jvmarg value="-XX:+ParallelRefProcEnabled"/>
2021-02-15 18:33:24 +01:00
<classpath refid="project.classpath"/>
</java>
</target>
<target description="génération de la javadoc" name="javadoc">
<javadoc sourcepath="src" destdir="doc" access="private" encoding="utf8" overview="overview.html" >
2021-02-15 18:33:24 +01:00
<fileset dir="src" defaultexcludes="yes">
<include name="**"/>
</fileset>
2021-02-15 21:33:09 +01:00
<classpath refid="project.classpath"/>
</javadoc>
2021-02-15 18:33:24 +01:00
</target>
<target name="packaging" depends="compile">
<mkdir dir="${project.bin.dir}/META-INF" />
<mkdir dir="build"/>
<manifest file="${project.bin.dir}/META-INF/MANIFEST.MF">
<attribute name="Class-Path" value="." />
<attribute name="Main-Class" value="lsystem.Main" />
<attribute name="Built-By" value="${user.name} with Apache Ant"/>
</manifest>
<jar jarfile="build/l-system.jar" basedir="${project.bin.dir}" manifest="${project.bin.dir}/META-INF/MANIFEST.MF"/>
</target>
<target name="tests" depends="compile">
<junit printsummary="true" haltonerror="no" haltonfailure="no" showoutput="true">
<classpath refid="project.classpath"/>
<formatter type="plain"/>
<test fork="true" name="lsystem.TestLSystem" outfile="test1" />
<test fork="true" name="lsystem.StressTest" outfile="test2" />
</junit>
</target>
2021-02-15 18:33:24 +01:00
</project>