From: Brad C. <bc...@bo...> - 2003-08-04 16:20:30
|
Found myself debugging the wrong code today so I added a snipit to build.xml to generate a source jar file. I'm not sure if/how maven could do this so I'll just post it here for now. Index: build.xml =================================================================== RCS file: /cvsroot/htmlunit/htmlunit/build.xml,v retrieving revision 1.41 diff -u -r1.41 build.xml --- build.xml 16 Jun 2003 21:01:05 -0000 1.41 +++ build.xml 4 Aug 2003 16:17:21 -0000 @@ -166,6 +166,11 @@ 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" destdir="build/${version}/docs/api" |