Mail Archive Home | fractal-commits List | November 2006 Index
| <-- Date Index --> | <-- Thread Index --> |
Date: Thursday, November 30, 2006 @ 13:56:53
Author: rouvoy
Path: /cvsroot/fractal/fractaladl
Modified: build.xml
* Adding Java 1.4 compliant compilation option to Fractal ADL
-----------+
build.xml | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
Index: fractaladl/build.xml
diff -u fractaladl/build.xml:1.9 fractaladl/build.xml:1.10
--- fractaladl/build.xml:1.9 Wed Oct 4 19:19:14 2006
+++ fractaladl/build.xml Thu Nov 30 13:56:53 2006
@@ -107,9 +107,9 @@
<!-- ========== COMPILE ========== -->
<!-- =================================== -->
- <target name="compile" depends="init">
+ <target name="compile" depends="init" description="compiles the product
into ${out.build}">
<mkdir dir="${out.build}"/>
- <javac destdir="${out.build}" debug="on">
+ <javac destdir="${out.build}" debug="on" source="1.4" target="1.4">
<classpath refid="classpath"/>
<src path="${src}"/>
<include name="**/*.java"/>
@@ -126,7 +126,7 @@
<!-- ========== TEST ========== -->
<!-- =================================== -->
- <target name="test" depends="compile">
+ <target name="test" depends="compile" description="run all tests">
<ant antfile="${test}/build.xml" target="test" inheritRefs="true"/>
</target>
@@ -141,7 +141,7 @@
<mkdir dir="${out.dist.lib}"/>
</target>
- <target name="jar" depends="dist.init,compile">
+ <target name="jar" depends="dist.init,compile" description="creates all
jars in ${out.dist.lib}">
<multipleAnt dir="${archive}"/>
</target>
@@ -191,7 +191,7 @@
</copy>
</target>
- <target name="dist" depends="jar,jdoc,examples">
+ <target name="dist" depends="jar,jdoc,examples" description="creates the
product's distributions into ${out.dist}">
<zip zipFile="${out.dist}/src.zip" basedir="${src}"/>
</target>
@@ -211,7 +211,7 @@
<!-- creates zip files of the different distribution (source, binaries) -->
- <target name="zip" depends="dist">
+ <target name="zip" depends="dist" description="creates the product's
distributions zip files into ${out.zip}">
<mkdir dir="${out.zip}"/>
<tar destfile="${out.zip}/${product.name}-${product.version}.tar.gz"
compression="gzip" longfile="gnu">
@@ -245,7 +245,7 @@
<ant dir="${web}" target="clean"/>
</target>
- <target name="clean" depends="properties,clean.web">
+ <target name="clean" depends="properties,clean.web" description="removes
all generated files">
<delete dir="${out.build}"/>
<delete dir="${out.dist}"/>
<delete dir="${out.zip}"/>
| <-- Date Index --> | <-- Thread Index --> |
Powered by MHonArc.
Copyright © 2006-2007, OW2 Consortium | contact | webmaster.