Update of /cvsroot/htmlparser/htmlparser
In directory sc8-pr-cvs1:/tmp/cvs-serv12744/htmlparser
Modified Files:
build.xml
Log Message:
Use junit.jar and commons-logging.jar now found in lib/.
Index: build.xml
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** build.xml 1 Jun 2003 20:50:06 -0000 1.37
--- build.xml 23 Jul 2003 00:12:05 -0000 1.38
***************
*** 17,22 ****
<property name="releaseDir" value="release"/>
<property name="finalLoc" value="distribution"/>
! <!-- location of junit.jar if there is no link to it in $JAVA_HOME/jre/lib/ext -->
! <property name="junit.jar" value="../nonexistant_directory/junit.jar"/>
<target name="init" description="initialize version properties">
--- 17,22 ----
<property name="releaseDir" value="release"/>
<property name="finalLoc" value="distribution"/>
! <property name="junit.jar" value="lib/junit.jar"/>
! <property name="commons-logging.jar" value="lib/commons-logging.jar"/>
<target name="init" description="initialize version properties">
***************
*** 126,130 ****
<!-- Compile the java code in ${src} -->
! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**,org/htmlparser/util/Generate.java" debug="on" />
</target>
--- 126,130 ----
<!-- Compile the java code in ${src} -->
! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**,org/htmlparser/util/Generate.java" debug="on" classpath=".:${commons-logging.jar}" />
</target>
***************
*** 172,175 ****
--- 172,176 ----
<classpath>
<pathelement location="${junit.jar}"/>
+ <pathelement location="${commons-logging.jar}"/>
</classpath>
</javac>
***************
*** 179,182 ****
--- 180,184 ----
<pathelement location="${src}"/>
<pathelement location="${junit.jar}"/>
+ <pathelement location="${commons-logging.jar}"/>
</classpath>
<arg value="-text"/>
|