Skip to Content.
Sympa Menu

xom-interest - [XOM-interest] [PATCH] Adding descriptions to Ant targets that require it

xom-interest AT lists.ibiblio.org

Subject: XOM API for Processing XML with Java

List archive

Chronological Thread  
  • From: "Francois Beausoleil" <fbos AT users.sourceforge.net>
  • To: xom-interest AT lists.ibiblio.org
  • Subject: [XOM-interest] [PATCH] Adding descriptions to Ant targets that require it
  • Date: Mon, 25 Aug 2003 20:20:31 -0400

Hello Elliotte,

I updated the build.xml file to include descriptions on the targets that
could/should require it.

Additionnaly, I updated the help target to have a single echo task. Echo
can echo embedded text, instead of using a bunch of echo tasks.

Hope that helps !
François

PS: This is a unified diff on Win32.
Developer of Java Gui Builder
http://jgb.sourceforge.net/
Index: build.xml
===================================================================
RCS file: /cvs/xom/build.xml,v
retrieving revision 1.1
diff -r1.1 build.xml
86,103c86,103
< <target name="help">
< <echo message=""/>
< <echo message="XOM Build file"/>
< <echo
message="-------------------------------------------------------------"/>
< <echo message=""/>
< <echo message=" available targets are:"/>
< <echo message=""/>
< <echo message=" help --> print this message"/>
< <echo message=" jar --> build the xom.jar file"/>
< <echo message=" compile --> compile the source code"/>
< <echo message=" javadoc --> generate the API documentation"/>
< <echo message=" test --> run JUnit test suite"/>
< <echo message=" testui --> run Junit test suite in GUI"/>
< <echo message=" clean --> clean up the build directory"/>
< <echo message=" dist --> the zip and .tar.gz files"/>
< <echo message=""/>
< <echo
message="-------------------------------------------------------------"/>
< <echo message=""/>
---
> <target name="help" description="Gives help about the different targets">
> <echo>
> XOM Build file
> -------------------------------------------------------------
>
> available targets are:
>
> help --> print this message
> jar --> build the xom.jar file
> compile --> compile the source code
> javadoc --> generate the API documentation
> test --> run JUnit test suite
> testui --> run Junit test suite in GUI
> clean --> clean up the build directory
> dist --> the zip and .tar.gz files
>
> -------------------------------------------------------------
> </echo>
156c156
< <target name="dist" depends="zip, tar.gz" />
---
> <target name="dist" depends="zip, tar.gz" description="Creates the
> distribution files"/>
192c192
< <target name="test" depends="compile">
---
> <target name="test" depends="compile" description="Runs the test suite
> using JUnit's TestUI TestRunner">
206c206
< <target name="testui" depends="compile">
---
> <target name="testui" depends="compile" description="Runs the test suite
> using JUnit's SwingUI TestRunner">



Archive powered by MHonArc 2.6.24.

Top of Page