add ant build + fixed a forget import

This commit is contained in:
Quentin Legot 2021-02-15 18:33:24 +01:00
parent 1c655b405f
commit 22e1262f12
3 changed files with 46 additions and 6 deletions

9
.gitignore vendored
View File

@ -6,9 +6,6 @@ out/
.bin
.settings/
.metadata
rapport/rapport.out
rapport/rapport.aux
rapport/rapport.pdf
rapport/rapport.log
rapport/rapport.toc
rapport/rapport.synctex.gz
*.iml
rapport/
!rapport/rapport.tex

42
build.xml Normal file
View File

@ -0,0 +1,42 @@
<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"/>
<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}" destdir="${project.bin.dir}" debug="on" optimize="off" deprecation="on" includeantruntime="false">
<classpath refid="project.classpath"/>
</javac>
</target>
<target name="init">
<echo message="Initialisation de ${ant.project.name}"/>
<mkdir dir="${basedir}/bin"/>
</target>
<target name="run" description="execution" depends="compile">
<java classname="lsystem.Main" fork="true">
<classpath refid="project.classpath"/>
</java>
</target>
<target name="javadoc">
<javadoc sourcepath="src" destdir="doc">
<fileset dir="src" defaultexcludes="yes">
<include name="**"/>
</fileset>
</javadoc>
</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>
</project>

View File

@ -7,6 +7,7 @@ import lsystem.screen.listener.NewGenListener;
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.util.ArrayList;
import javax.swing.JButton;
import javax.swing.JFrame;