Update documentation.

This commit is contained in:
James Roseborough
2010-05-09 05:36:03 +00:00
parent fe617fea21
commit 7c72a9feaf
2 changed files with 62 additions and 49 deletions

View File

@@ -12,6 +12,9 @@
<artifact:dependencies filesetId="cobutura.fileset">
<dependency groupId="cobertura" artifactId="cobertura" version="1.8"/>
<dependency groupId="log4j" artifactId="log4j" version="1.2.9"/>
<dependency groupId="asm" artifactId="asm" version="2.2.1"/>
<dependency groupId="oro" artifactId="oro" version="2.0.7"/>
<dependency groupId="junit" artifactId="junit" version="3.8.1"/>
</artifact:dependencies>
@@ -24,10 +27,6 @@
<import file="wtk.xml"/>
<property environment="env"/>
<property name="antlr.version" value="3.1.3"/>
<property name="antlr.home" value="${env.ANTLR_HOME}"/>
<property name="antlr.tool.jar" value="${antlr.home}/lib/antlr-${antlr.version}.jar"/>
<property name="antlr.runtime.jar" value="${antlr.home}/lib/antlr-runtime-${antlr.version}.jar"/>
<target name="clean" description="Remove all files created by the build/test process.">
<delete dir="build" failonerror="no"/>
@@ -36,6 +35,8 @@
</target>
<target name="init">
<ant antfile="build.xml" target="bcel-lib"/>
<ant antfile="build.xml" target="luaj1-lib"/>
<mkdir dir="${classes.dir}" />
<mkdir dir="${instrumented.dir}" />
<mkdir dir="${reports.xml.dir}" />
@@ -48,7 +49,8 @@
<javac destdir="${classes.dir}" debug="yes" target="1.5">
<classpath refid="cobertura.classpath" />
<classpath refid="wtk-libs" />
<classpath path="${antlr.runtime.jar}"/>
<classpath path="lib/bcel-5.2.jar" />
<classpath path="lib/luaj-j2se-1.0.3.jar" />
<src path="src/core"/>
<src path="src/jme"/>
<src path="src/jse"/>
@@ -68,7 +70,6 @@
<include name="org/luaj/vm2/lib/jme/*.class" />
<include name="org/luaj/vm2/compiler/*.class" />
<include name="org/luaj/vm2/luajc/*.class" />
<include name="org/luaj/vm2/luajc/antlr/*.class" />
<include name="org/luaj/vm2/luajc/lst/*.class" />
<include name="org/luaj/vm2/script/*.class" />
<exclude name="**/*Test*.class" />
@@ -82,6 +83,8 @@
<classpath location="${classes.dir}" />
<classpath location="src/test/res" />
<classpath refid="cobertura.classpath" />
<classpath path="lib/bcel-5.2.jar" />
<classpath path="lib/luaj-j2se-1.0.3.jar" />
<formatter type="xml" />
<batchtest todir="${reports.xml.dir}">
<fileset dir="test/junit">