From: Steve F. <sm...@us...> - 2002-01-09 15:08:04
|
Update of /cvsroot/mockobjects/mockobjects-java In directory usw-pr-cvs1:/tmp/cvs-serv22471 Modified Files: build.xml Log Message: changed the year and some comments Index: build.xml =================================================================== RCS file: /cvsroot/mockobjects/mockobjects-java/build.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- build.xml 2001/11/05 00:11:51 1.15 +++ build.xml 2002/01/09 15:08:00 1.16 @@ -4,6 +4,15 @@ ============================================================================= Build file for the mockobjects project. + The following Ant tasks must be available in your ant installation + (i.e. the Ant task themselves and their dependent jars need to be put + in ANT_HOME/lib) : + + stylebook [REQUIRED] For builing the documentation and + web site. + + junit [REQUIRED] For running the unit tests. + The following properties need to be set in a ./build.properties or or ${user.home}/build.properties file : @@ -15,13 +24,9 @@ Depending on what mock implementation you wish to build you'll need to put associated jars in <root>/lib. For example, if you wish to build the servlet mock implementation you'll need to put the Servlet API jar - in <root>/lib. If it not there, then the servelt mock implementation will + in <root>/lib. If it not there, then the servlet mock implementation will simply not be built. - Note: You'll also need to have the 'junit' and 'stylebook' tasks defined - in your Ant installation for running the unit tests and the documentation - and web site generation. - This script should be started with the following command line : ant <target> @@ -42,7 +47,7 @@ <property name="project.name" value="mockobjects"/> <!-- Miscellaneous settings --> - <property name="year" value="2001"/> + <property name="year" value="2002"/> <property name="debug" value="on"/> <property name="optimize" value="off"/> <property name="deprecation" value="off"/> @@ -400,6 +405,7 @@ <copy todir="${out.doc.dir}"> <fileset dir="${xdoc.dir}"> <include name="misc/*.pdf"/> + <include name="papers/**"/> </fileset> </copy> |