Lines 6-25
Link Here
|
6 |
<property name="version.level" value="1.1.8"/> |
6 |
<property name="version.level" value="1.1.8"/> |
7 |
<property name="version.date" value="29-Sep-2003"/> |
7 |
<property name="version.date" value="29-Sep-2003"/> |
8 |
|
8 |
|
9 |
|
9 |
<property file="ant/build.properties" /> |
10 |
<!-- Allows us to use the IzPack Ant task --> |
|
|
11 |
<taskdef name="izpack" classpath="${basedir}/lib/compiler.jar" |
12 |
classname="com.izforge.izpack.ant.IzPackTask"/> |
13 |
|
14 |
|
15 |
<!-- Referenced libraries --> |
16 |
<property name="javaccdir" location = "C:/javadev/TOOLS/javacc-3.2/bin/lib/javacc.jar"/> |
17 |
<property name="ororegexp" location="c:/javadev/LIBS/jakarta-oro-2.0.7/jakarta-oro-2.0.7.jar"/> |
18 |
<property name="gnuregexp" location="c:/javadev/LIBS/gnu.regexp-1.1.4/lib/gnu-regexp-1.1.4.jar"/> |
19 |
|
20 |
<property name="bsfdir" location = "C:/javadev/LIBS/bsf-2.3.0/lib/bsf.jar"/> |
21 |
|
22 |
<property name="izpackdir" location = "C:/program files/IzPack"/> |
23 |
|
10 |
|
24 |
<!-- Source content directory structure --> |
11 |
<!-- Source content directory structure --> |
25 |
<property name="src" location="src"/> |
12 |
<property name="src" location="src"/> |
Lines 143-149
Link Here
|
143 |
<!-- Compile the java code from ${src} into ${build} --> |
130 |
<!-- Compile the java code from ${src} into ${build} --> |
144 |
<target name="compile" depends="init" |
131 |
<target name="compile" depends="init" |
145 |
description="compile the source " > |
132 |
description="compile the source " > |
146 |
<javac srcdir="${src}" destdir="${build}" debug="true"> |
133 |
<javac srcdir="${src}" |
|
|
134 |
destdir="${build}" |
135 |
debug="true" |
136 |
source="1.3" |
137 |
target="1.3"> |
147 |
<classpath refid="project.compile.class.path"/> |
138 |
<classpath refid="project.compile.class.path"/> |
148 |
</javac> |
139 |
</javac> |
149 |
</target> |
140 |
</target> |
Lines 170-175
Link Here
|
170 |
<doctitle><![CDATA[<h1>Test</h1>]]></doctitle> |
161 |
<doctitle><![CDATA[<h1>Test</h1>]]></doctitle> |
171 |
<bottom><![CDATA[<i>Copyright © 2003 Jean-Marc Lugrin. All Rights Reserved. Licensed under LGPL</i>]]></bottom> |
162 |
<bottom><![CDATA[<i>Copyright © 2003 Jean-Marc Lugrin. All Rights Reserved. Licensed under LGPL</i>]]></bottom> |
172 |
<link href="http://java.sun.com/j2se/1.4.2/docs/api/"/> |
163 |
<link href="http://java.sun.com/j2se/1.4.2/docs/api/"/> |
|
|
164 |
<classpath refid="project.compile.class.path"/> |
173 |
</javadoc> |
165 |
</javadoc> |
174 |
</target> |
166 |
</target> |
175 |
|
167 |
|