one pass on layout

build.xml exclude javafx ( remark lost with doit.sh ant ).
This commit is contained in:
philippe lhardy
2017-11-18 18:33:19 +01:00
parent e429919005
commit 8f234bb41b
3 changed files with 38 additions and 23 deletions

View File

@@ -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>