initialize project
This commit is contained in:
parent
75cb9d32f4
commit
b5124cf6b0
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
/.idea/
|
||||
/dist/
|
||||
/build/
|
||||
/out/
|
125
build.xml
Normal file
125
build.xml
Normal file
@ -0,0 +1,125 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<project name="legot-neveu-lucas" default="run" basedir=".">
|
||||
<property name="app.name" value="legot-neveu-lucas" />
|
||||
<property name="app.version" value="1.0.0"/>
|
||||
<property name="app.fullname" value="${app.name}-${app.version}"/>
|
||||
<property name="build.home" value="${basedir}/build"/>
|
||||
<property name="build.test.home" value="${basedir}/build/test"/>
|
||||
<property name="javac.version" value="17"/>
|
||||
<property name="dist.home" value="${basedir}/dist"/>
|
||||
<property name="docs.home" value="${basedir}/docs"/>
|
||||
<property name="src.home" value="${basedir}/src"/>
|
||||
<property name="src.test.home" value="${basedir}/test"/>
|
||||
<property name="test.report.home" value="${basedir}/build/test/results"/>
|
||||
<property name="lib.home" value="${basedir}/lib"/>
|
||||
<property name="javac.encoding" value="UTF-8"/>
|
||||
<!-- ==================== Compile options =========================== -->
|
||||
<property name="compile.debug" value="true"/>
|
||||
<property name="compile.deprecation" value="false"/>
|
||||
<property name="compile.optimize" value="true"/>
|
||||
<!-- ==================== Compilation Classpath =========================== -->
|
||||
<path id="compile.classpath">
|
||||
<fileset dir="${lib.home}">
|
||||
<include name="**/*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
<!-- ==================== All Target ====================================== -->
|
||||
<target name="all" depends="clean,compile" description="Clean build and dist directories, then compile"/>
|
||||
<!-- ==================== Clean Target ==================================== -->
|
||||
|
||||
<target name="clean" description="Delete old build and dist directories">
|
||||
<delete dir="${build.home}"/>
|
||||
<delete dir="${build.test.home}"/>
|
||||
<delete dir="${dist.home}"/>
|
||||
<delete dir="${test.report.home}"/>
|
||||
</target>
|
||||
<!-- ==================== Prepare Target ================================== -->
|
||||
<target name="prepare">
|
||||
<mkdir dir="${build.home}"/>
|
||||
<mkdir dir="${build.test.home}" />
|
||||
<mkdir dir="${dist.home}"/>
|
||||
<mkdir dir="${test.report.home}"/>
|
||||
<mkdir dir="${lib.home}"/>
|
||||
<mkdir dir="${src.test.home}"/>
|
||||
</target>
|
||||
<!-- ==================== Compile Target ================================== -->
|
||||
<target name="compile" depends="prepare" description="Compile Java sources">
|
||||
<javac srcdir="${src.home}"
|
||||
destdir="${build.home}"
|
||||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
optimize="${compile.optimize}"
|
||||
source="${javac.version}"
|
||||
encoding="${javac.encoding}">
|
||||
<classpath refid="compile.classpath"/>
|
||||
</javac>
|
||||
<javac srcdir="${src.test.home}" destdir="${build.test.home}">
|
||||
<classpath>
|
||||
<pathelement location="${build.home}"/>
|
||||
<path refid="compile.classpath"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
<!-- Copy application resources -->
|
||||
<copy todir="${build.home}">
|
||||
<fileset dir="${src.home}" excludes="**/*.java"/>
|
||||
</copy>
|
||||
</target>
|
||||
<!-- ==================== Dist Target ===================================== -->
|
||||
<target name="dist" depends="clean,compile,javadoc" description="Create binary distribution">
|
||||
<copy todir="${dist.home}/lib">
|
||||
<fileset dir="${lib.home}"/>
|
||||
</copy>
|
||||
<!-- Create application JAR file -->
|
||||
<jar jarfile="${dist.home}/${app.fullname}.jar"
|
||||
basedir="${build.home}">
|
||||
<manifest>
|
||||
<attribute name="Main-Class" value="fr.unicaen.Main"/>
|
||||
<!-- <attribute name="Class-Path" value="lib/utilsGL.jar" /> -->
|
||||
</manifest>
|
||||
</jar>
|
||||
<!-- Attention : copie ad-hoc pour satisfaire immédiatement une mise à jour de dépendance, car le projet "blackjack" a besoin de cette librairie -->
|
||||
<copy file="${dist.home}/${app.fullname}.jar" todir="${basedir}/../jeuCombat/lib" />
|
||||
</target>
|
||||
<!-- ==================== Javadoc Target ================================== -->
|
||||
<target name="javadoc" depends="compile" description="Create Javadoc API documentation">
|
||||
<mkdir dir="${dist.home}/docs/api"/>
|
||||
<javadoc sourcepath="${src.home}"
|
||||
destdir="${dist.home}/docs/api"
|
||||
packagenames="*">
|
||||
<classpath>
|
||||
<fileset dir="${lib.home}">
|
||||
<include name="**/*.jar"/>
|
||||
</fileset>
|
||||
</classpath>
|
||||
</javadoc>
|
||||
</target>
|
||||
<!-- ==================== Run Target ================================== -->
|
||||
<target name="run" depends="dist">
|
||||
<java jar="${dist.home}/${app.fullname}.jar" fork="true" />
|
||||
</target>
|
||||
<!-- ==================== Test Target ===================================== -->
|
||||
<target name="test" depends="clean,compile,dist">
|
||||
<junit fork="true" printsummary="withOutAndErr" haltonfailure="false" showoutput="true" logfailedtests="true">
|
||||
<classpath>
|
||||
<pathelement location="${build.test.home}"/>
|
||||
<pathelement location="${build.home}"/>
|
||||
<path refid="compile.classpath"/>
|
||||
</classpath>
|
||||
<formatter type="xml"/>
|
||||
<batchtest todir="${test.report.home}">
|
||||
<!--
|
||||
<fileset dir="${build.test.home}">
|
||||
<include name="**/*Test.class"/>
|
||||
</fileset>
|
||||
-->
|
||||
<fileset dir="${build.test.home}" includes="**/*Test.class"/>
|
||||
</batchtest>
|
||||
</junit>
|
||||
</target>
|
||||
<target name="junitreport" depends="test">
|
||||
<junitreport todir="${test.report.home}">
|
||||
<fileset dir="${test.report.home}" includes="TEST-*.xml"/>
|
||||
<report todir="${test.report.home}"/>
|
||||
</junitreport>
|
||||
</target>
|
||||
</project>
|
8
src/fr/unicaen/Main.java
Normal file
8
src/fr/unicaen/Main.java
Normal file
@ -0,0 +1,8 @@
|
||||
package fr.unicaen;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("main");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user