one pass on layout
build.xml exclude javafx ( remark lost with doit.sh ant ).
This commit is contained in:
@@ -17,7 +17,9 @@
|
||||
<target name="compile" depends="init"
|
||||
description="compile the source " >
|
||||
<!-- Compile the java code from ${src} into ${build} -->
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
<javac srcdir="${src}" destdir="${build}" includeantruntime="false">
|
||||
<exclude name="org/artisanlogiciel/games/javafx/*"/>
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="compile"
|
||||
@@ -25,8 +27,8 @@
|
||||
<!-- Create the distribution directory -->
|
||||
<mkdir dir="${dist}/lib"/>
|
||||
|
||||
<!-- Put everything in ${build} into the artloglaby-0.0.1.jar file ( ${DSTAMP} not used yet )-->
|
||||
<jar jarfile="${dist}/lib/artloglaby-0.0.1.jar" basedir="${build}">
|
||||
<!-- Put everything in ${build} into the artloglaby-0.1.jar file ( ${DSTAMP} not used yet )-->
|
||||
<jar jarfile="${dist}/lib/artloglaby-0.1.jar" basedir="${build}">
|
||||
<manifest>
|
||||
<attribute name="Main-Class" value="org.artisanlogiciel.games.Display"/>
|
||||
</manifest>
|
||||
|
||||
Reference in New Issue
Block a user