summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicola Ken Barozzi <nicolaken@apache.org>2002-04-18 09:45:20 +0000
committerNicola Ken Barozzi <nicolaken@apache.org>2002-04-18 09:45:20 +0000
commit8600ac49eb28d95399be35e663c83d50725468fc (patch)
tree2bdd7f7a816a11bfa87fdde6a6a1c75d5836ee1f
parent6aa5d578161fb917238b372f82eb25ae437da321 (diff)
downloadpoi-8600ac49eb28d95399be35e663c83d50725468fc.tar.gz
poi-8600ac49eb28d95399be35e663c83d50725468fc.zip
Reverting a change to the interactive target that shouldn't have been committed.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352436 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build.xml35
1 files changed, 28 insertions, 7 deletions
diff --git a/build.xml b/build.xml
index bb0bf67838..42e4331371 100644
--- a/build.xml
+++ b/build.xml
@@ -34,21 +34,42 @@
<!-- Interactive build -->
<!-- =================================================================== -->
<target name="interactive" description="Interactive Build" depends="-init">
+ <echo>
+ --------------------------------------------------------------
+ ${xgump.module.project.name} ${xgump.module.project.version.major}.${xgump.module.project.version.minor} [${YEAR}]
- <antcall target="call-cent">
- <param name="cent-name" value="centipede"/>
- <param name="cent-target" value="menu"/>
- <param name="definition" value="targets/"/>
- </antcall>
+ --------------------------------------------------------------
+ Using ${ant.version}
+ Build file ${ant.file}
+ --------------------------------------------------------------
+ These are the most common build targets.
+ You can also invoke them directly; see build.xml for more info.
+ Builds will be in /build directory, distributions in /dist.
+
+ all -------------- creates the jars and the site
+ compile ---------- compiles the source code
+ test ------------- performs the jUnit tests
+ jar -------------- create the jar files
+ docs ------------- generates the html docs - clean not needed
+ javadocs --------- generates the API documentation
+ site ------------- generates the html site (docs+reports)
+ clean ------------ cleans the build directory
+ dist ------------- creates src and bin distributions
+ scratchpad ------- build-run scratchpad code
+ contrib ---------- build-run contributed code
+ generate-records - generate excel records
+ generate-types --- generate word types
+
+ </echo>
+ <property name="input.selection" value="all"/>
+ <centipede-user-input name="input.selection">Please select a target </centipede-user-input>
<antcall target="call-cent">
<param name="cent-name" value="centipede"/>
<param name="cent-target" value="splash"/>
</antcall>
- <echo message="IS::::::::${input.selection}::::"/>
-
<antcall target="${input.selection}"/>
</target>