Update of /cvsroot/mockobjects/mockobjects-java
In directory usw-pr-cvs1:/tmp/cvs-serv12990
Modified Files:
build.xml
Log Message:
Move none core mocks out of the core area
Index: build.xml
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/build.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- build.xml 23 Feb 2002 19:20:49 -0000 1.19
+++ build.xml 13 Apr 2002 15:08:23 -0000 1.20
@@ -1,5 +1,4 @@
<?xml version="1.0"?>
-
<!--
=============================================================================
Build file for the mockobjects project.
@@ -38,496 +37,596 @@
=============================================================================
-->
<project name="mockobjects" default="jar" basedir=".">
-
- <!-- Give user a chance to override without editing this file
[...1093 lines suppressed...]
- <!-- Be careful, it's going to reformat all code ! -->
- <include name="**/*.java"/>
- </fileset>
- </pretty>
-
- </target>
-
+ <target name="format" depends="call-me-first"
+ description="reformats all java code">
+ <taskdef name="pretty" classname="org.acm.seguin.ant.Pretty" />
+
+ <pretty settingsdir="${conf.dir}">
+ <fileset dir="${src.dir}">
+<!-- Be careful, it's going to reformat all code ! -->
+ <include name="**/*.java" />
+ </fileset>
+ </pretty>
+ </target>
</project>
+
|