|
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>
|
|
From: Vincent M. <vm...@oc...> - 2002-01-09 20:43:35
|
Steve,
Actually the year should rather be :
value="2001-2002"
See the thread named "License change for new year" that I started on the
Jakarta general mailing-list if you want details.
-Vincent
> -----Original Message-----
> From: moc...@li...
> [mailto:moc...@li...] On Behalf Of
> Steve Freeman
> Sent: 09 January 2002 15:08
> To: moc...@li...
> Subject: [MO-java-dev] CVS: mockobjects-java build.xml,1.15,1.16
>
> 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>
>
>
>
> _______________________________________________
> Mockobjects-java-dev mailing list
> Moc...@li...
> https://lists.sourceforge.net/lists/listinfo/mockobjects-java-dev
|
|
From: Steve F. <st...@m3...> - 2002-01-09 20:50:44
|
OK In case you're wondering, I've been doing the resturcturing in a branch. I'm busy tomorrow, but should get back to it on Friday. Steve From: "Vincent Massol" <vm...@oc...> > Steve, > > Actually the year should rather be : > > value="2001-2002" > > See the thread named "License change for new year" that I started on the > Jakarta general mailing-list if you want details. |