bump to version 1.0 ! champ !

This commit is contained in:
philippe lhardy
2018-03-04 19:08:40 +01:00
parent 8f1b6afee5
commit 0e8ab1e5bb
2 changed files with 8 additions and 5 deletions

View File

@@ -6,6 +6,9 @@
<property name="src" location="java"/> <property name="src" location="java"/>
<property name="build" location="build"/> <property name="build" location="build"/>
<property name="dist" location="dist"/> <property name="dist" location="dist"/>
<!-- Fill me please / todo -->
<property name="artgraphicslib" value="artgaphics-0.1.0"/>
<property name="distversion" value="1.0"/>
<target name="init"> <target name="init">
<!-- Create the time stamp --> <!-- Create the time stamp -->
@@ -17,7 +20,7 @@
<target name="compile" depends="init" <target name="compile" depends="init"
description="compile the source " > description="compile the source " >
<!-- Compile the java code from ${src} into ${build} --> <!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" includeantruntime="false" classpath="libs/artgaphics-0.1.0.jar"> <javac srcdir="${src}" destdir="${build}" includeantruntime="false" classpath="libs/${artgraphicslib}.jar">
<exclude name="org/artisanlogiciel/games/javafx/*"/> <exclude name="org/artisanlogiciel/games/javafx/*"/>
</javac> </javac>
</target> </target>
@@ -27,11 +30,11 @@
<!-- Create the distribution directory --> <!-- Create the distribution directory -->
<mkdir dir="${dist}/lib"/> <mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the artloglaby-0.1.jar file ( ${DSTAMP} not used yet )--> <!-- Put everything in ${build} into the artloglaby-${distversion}.jar file ( ${DSTAMP} not used yet )-->
<jar jarfile="${dist}/lib/artloglaby-0.1.jar" basedir="${build}"> <jar jarfile="${dist}/lib/artloglaby-${distversion}.jar" basedir="${build}">
<manifest> <manifest>
<attribute name="Main-Class" value="org.artisanlogiciel.games.Display"/> <attribute name="Main-Class" value="org.artisanlogiciel.games.Display"/>
<attribute name="Class-Path" value="artgaphics-0.1.0.jar"/> <attribute name="Class-Path" value="${artgraphicslib}.jar"/>
</manifest> </manifest>
<fileset dir="lang" includes="**" /> <fileset dir="lang" includes="**" />
</jar> </jar>

View File

@@ -3,5 +3,5 @@ project_default=dist
project_basedir=$(pwd) project_basedir=$(pwd)
project_mainpackage=org.artisanlogiciel.games project_mainpackage=org.artisanlogiciel.games
project_mainclass=$project_mainpackage.Display project_mainclass=$project_mainpackage.Display
project_version=0.1 project_version=1.0
default_args='lab/lab30x30.raw' default_args='lab/lab30x30.raw'