[Htmlparser-cvs] htmlparser build.xml,1.63,1.64
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-05-22 11:36:01
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv895 Modified Files: build.xml Log Message: Change minor version to 5. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** build.xml 20 Mar 2004 20:01:02 -0000 1.63 --- build.xml 22 May 2004 11:35:50 -0000 1.64 *************** *** 20,34 **** that's why this step can't be automated - incorporate changes from ChangeLog into htmlparser/docs/changes under ! a heading like "Integration Build 1.4 - 20040104" - 'ant versionSource' updates the version in Parser.java and release.txt - perform a CVS update on htmlparser to identify new and changed files - commit changed files (i.e. Parser.java, release.txt, docs/changes, docs/wiki and docs/wiki/images) to the head revision using a reason of the form: ! Update version to 1.4-20040104. ! - use CVS to tag the current head revisions with a name like v1_4_20040104 - use CVS to checkout everything with the tag used above - 'ant test' compiles and runs the unit tests - 'ant clean htmlparser' updates the version headers, creates the jar file and doc files and zips ! everything into a file htmlparser/distribution/htmlparser1_4_20040104.zip - use CVS to checkout everything against the head revision to reset your workspace --- 20,34 ---- that's why this step can't be automated - incorporate changes from ChangeLog into htmlparser/docs/changes under ! a heading like "Integration Build 1.5 - 20040522" - 'ant versionSource' updates the version in Parser.java and release.txt - perform a CVS update on htmlparser to identify new and changed files - commit changed files (i.e. Parser.java, release.txt, docs/changes, docs/wiki and docs/wiki/images) to the head revision using a reason of the form: ! Update version to 1.5-20040522. ! - use CVS to tag the current head revisions with a name like v1_5_20040522. - use CVS to checkout everything with the tag used above - 'ant test' compiles and runs the unit tests - 'ant clean htmlparser' updates the version headers, creates the jar file and doc files and zips ! everything into a file htmlparser/distribution/htmlparser1_5_20040522.zip - use CVS to checkout everything against the head revision to reset your workspace *************** *** 40,47 **** ftp> cd incoming ftp> bin ! ftp> put htmlparser1_4_20040104.zip ftp> bye - add a release to the 'Integation Builds' package ! Admin-File Releases-Add Release, use a name of the form '1_4_20040104' - Step 1, 'Paste The Notes' (using numeric character references and character entity references because this is displayed as HTML) with a --- 40,47 ---- ftp> cd incoming ftp> bin ! ftp> put htmlparser1_5_20040522.zip ftp> bye - add a release to the 'Integation Builds' package ! Admin-File Releases-Add Release, use a name of the form '1_5_20040522' - Step 1, 'Paste The Notes' (using numeric character references and character entity references because this is displayed as HTML) with a *************** *** 52,56 **** Pending Bugs: - use the 'Upload Change Log:' field to specify the ChamgeLog file you edited ! - Step 2, check the checkbox of the htmlparser1_4_20040104.zip file from the list of files in the uploads section - Submit/Refresh --- 52,56 ---- Pending Bugs: - use the 'Upload Change Log:' field to specify the ChamgeLog file you edited ! - Step 2, check the checkbox of the htmlparser1_5_20040522.zip file from the list of files in the uploads section - Submit/Refresh *************** *** 65,69 **** Submit News - from the project summary screen, select 'Submit News' and title it like: ! HTML Parser Integration Release 1.4-20040104 - type in a summary of the changes made - SUBMIT --- 65,69 ---- Submit News - from the project summary screen, select 'Submit News' and title it like: ! HTML Parser Integration Release 1.5-20040522 - type in a summary of the changes made - SUBMIT *************** *** 77,84 **** <!-- Note: These can be overridden on the command line, as in: ! ant -DversionMinor=4 -DversionType=Release\ Build versionSource --> <property name="versionMajor" value="1"/> ! <property name="versionMinor" value="4"/> <property name="versionType" value="Integration Build"/> <property name="versionNumber" value="${versionMajor}.${versionMinor}"/> --- 77,84 ---- <!-- Note: These can be overridden on the command line, as in: ! ant -DversionMinor=5 -DversionType=Release\ Build versionSource --> <property name="versionMajor" value="1"/> ! <property name="versionMinor" value="5"/> <property name="versionType" value="Integration Build"/> <property name="versionNumber" value="${versionMajor}.${versionMinor}"/> *************** *** 104,108 **** <target name="JDK1.4"> <condition property="JDK1.4"> ! <equals arg1="1.4" arg2="${ant.java.version}"/> </condition> </target> --- 104,111 ---- <target name="JDK1.4"> <condition property="JDK1.4"> ! <or> ! <equals arg1="1.4" arg2="${ant.java.version}"/> ! <equals arg1="1.4" arg2="${ant.java.version}"/> ! </or> </condition> </target> *************** *** 321,325 **** <property name="javadoc.doctitle" value="HTML Parser ${versionNumber}"/> <property name="javadoc.header" value="<A HREF="http://htmlparser.sourceforge.net" target="_top">HTML Parser Home Page</A>"/> ! <property name="javadoc.footer" value="&copy; 2004 Somik Raha<div align="right">${TODAY_STRING}</div>"/> <property name="javadoc.bottom" value="HTML Parser is an open source library released under <A HREF="http://www.opensource.org/licenses/lgpl-license.html" target="_top">LGPL</A>.<BR> --- 324,328 ---- <property name="javadoc.doctitle" value="HTML Parser ${versionNumber}"/> <property name="javadoc.header" value="<A HREF="http://htmlparser.sourceforge.net" target="_top">HTML Parser Home Page</A>"/> ! <property name="javadoc.footer" value="&copy; 2004 Derrick Oswald<div align="right">${TODAY_STRING}</div>"/> <property name="javadoc.bottom" value="HTML Parser is an open source library released under <A HREF="http://www.opensource.org/licenses/lgpl-license.html" target="_top">LGPL</A>.<BR> |