[Htmlparser-cvs] htmlparser build.xml,1.39,1.40
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-07-29 23:24:57
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv4104/htmlparser Modified Files: build.xml Log Message: Exclude lexer package, include third party libraries, don't build doc tars. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** build.xml 27 Jul 2003 19:19:16 -0000 1.39 --- build.xml 29 Jul 2003 23:24:54 -0000 1.40 *************** *** 197,201 **** <!-- Compile the java code in ${src} --> ! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**,org/htmlparser/util/Generate.java,org/htmlparser/lexer" debug="on" classpath="src:${commons-logging.jar}" /> </target> --- 197,201 ---- <!-- Compile the java code in ${src} --> ! <javac srcdir="${src}" includes="org/htmlparser/**" excludes="org/htmlparser/tests/**,org/htmlparser/util/Generate.java,org/htmlparser/lexer/**" debug="on" classpath="src:${commons-logging.jar}" /> </target> *************** *** 334,338 **** </target> ! <!-- Package the release, creating the docs gzip also for uploading --> <target name="Package" depends="Release,sources" description="glom the release and source files into the distribution zip file"> <echo message="**********************************"/> --- 334,338 ---- </target> ! <!-- Package the release --> <target name="Package" depends="Release,sources" description="glom the release and source files into the distribution zip file"> <echo message="**********************************"/> *************** *** 341,348 **** <mkdir dir="${finalLoc}"/> <zip zipfile="${finalLoc}/htmlparser${versionTag}.zip" basedir="${releaseDir}"/> - <tar tarfile="${finalLoc}/docs.tar" basedir="${dist}/docs"/> - <gzip zipfile="${finalLoc}/docs.tar.gz" src="${finalLoc}/docs.tar"/> </target> --- 341,349 ---- <mkdir dir="${finalLoc}"/> + <mkdir dir="${releaseDir}/lib"/> + <copy file="lib/commons-logging.jar" todir="${releaseDir}/lib"/> + <copy file="lib/junit.jar" todir="${releaseDir}/lib"/> <zip zipfile="${finalLoc}/htmlparser${versionTag}.zip" basedir="${releaseDir}"/> </target> |