From: <no...@us...> - 2003-09-09 20:22:08
|
Log Message: ----------- an update of the version number in build.xml and outputting of a src jar for the current build Patch submitted by Brad Clarke Modified Files: -------------- /cvsroot/htmlunit/htmlunit/src/xdocs: changes.xml /cvsroot/htmlunit/htmlunit: build.xml Revision Data ------------- Index: changes.xml =================================================================== RCS file: /cvsroot/htmlunit/htmlunit/src/xdocs/changes.xml,v retrieving revision 1.124 retrieving revision 1.125 diff -u -d -r1.124 -r1.125 --- changes.xml 3 Sep 2003 19:41:29 -0000 1.124 +++ changes.xml 9 Sep 2003 20:22:05 -0000 1.125 @@ -10,11 +10,16 @@ <action type="update" dev="mbowler" id="713646"> Patch for bug in onload handler submitted by Andreas Hangler </action> - <action type="update" dev="mbowler" id="797144 "> + <action type="update" dev="mbowler" id="797144"> Added support for the about: protocol - patch from Jun Chen </action> - <action type="update" dev="mbowler" id="797144 "> + <action type="update" dev="mbowler" id="797144"> Added support for window frames - patch from Jun Chen + </action> + <action type="update" dev="mbowler" id="803233 " due-to="Brad Clarke"> + an update of the version number in build.xml and outputting of + a src jar for the current build + Patch submitted by Brad Clarke </action> </release> Index: build.xml =================================================================== RCS file: /cvsroot/htmlunit/htmlunit/build.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- build.xml 16 Jun 2003 21:01:05 -0000 1.41 +++ build.xml 9 Sep 2003 20:22:05 -0000 1.42 @@ -14,7 +14,7 @@ <!--<property name="build.compiler" value="jikes" />--> <property name="build.compiler.pedantic" value="true"/> -<property name="version" value="HtmlUnit-1.2.2" /> +<property name="version" value="HtmlUnit-1.2.3" /> <property environment="env"/> <property name="local-repository" value ="target/repository"/> @@ -165,6 +165,11 @@ excludes="**/test/*,**/*.java,build.xml,lib,**/package.html" manifest="build/${version}/META-INF/MANIFEST.MF"/> <delete file="build/${version}/META-INF/MANIFEST.MF"/> + + <jar + jarfile="build/${version}/lib/HtmlUnit-src.jar" + basedir="src/java" + includes="**/*.java"/> <javadoc sourcepath="src/java" |