Update of /cvsroot/ejtools/build
In directory usw-pr-cvs1:/tmp/cvs-serv31887
Modified Files:
build.xml
Log Message:
Add Pretty Print of source code
Index: build.xml
===================================================================
RCS file: /cvsroot/ejtools/build/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.xml 24 May 2002 21:13:39 -0000 1.7
--- build.xml 25 May 2002 20:29:45 -0000 1.8
***************
*** 34,38 ****
<echo message="todo : Generate the ToDo list for each module"/>
<echo message="logo : Create the application logo"/>
! <echo message="package : Package the applications"/>
<echo message="website : Create the website"/>
<echo message="tarball : Create a source tarball"/>
--- 34,39 ----
<echo message="todo : Generate the ToDo list for each module"/>
<echo message="logo : Create the application logo"/>
! <echo message="package : Package the applications and the Web applications"/>
! <echo message="pretty : Pretty Print the code for all modules"/>
<echo message="website : Create the website"/>
<echo message="tarball : Create a source tarball"/>
***************
*** 116,119 ****
--- 117,134 ----
<antcall target="sub.web.applications">
<param name="target" value="package"/>
+ </antcall>
+ </target>
+ <!-- ======================================== -->
+ <!-- Executes the Pretty Printer on each modules -->
+ <!-- ======================================== -->
+ <target name="pretty.print" depends="info" description="">
+ <antcall target="sub.libraries">
+ <param name="target" value="pretty.print"/>
+ </antcall>
+ <antcall target="sub.applications">
+ <param name="target" value="pretty.print"/>
+ </antcall>
+ <antcall target="sub.web.applications">
+ <param name="target" value="pretty.print"/>
</antcall>
</target>
|