5a91ae0da4
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352096 13f79535-47bb-0310-9956-ffa450edef68
34 lines
1.9 KiB
Plaintext
34 lines
1.9 KiB
Plaintext
<!-- =================================================================== -->
|
|
<!-- Interactive build -->
|
|
<!-- =================================================================== -->
|
|
<target name="interactive" description="Interactive Build" depends="init">
|
|
<echo message="--------------------------------------------------------------"/>
|
|
<echo message=" "/>
|
|
<echo message=" ${fullname} ${version} [${year}] "/>
|
|
<echo message=" "/>
|
|
<echo message="--------------------------------------------------------------"/>
|
|
<echo message="Building with ${ant.version}"/>
|
|
<echo message="using build file ${ant.file}"/>
|
|
<echo message="--------------------------------------------------------------"/>
|
|
<echo message=" These are the most common build targets."/>
|
|
<echo message=" You can also invoke them directly; see build.xml for more info. "/>
|
|
<echo message=" Builds will be in /build directory, distributions in /dist."/>
|
|
<echo message=" "/>
|
|
<echo message=" compile ------ compiles the source code "/>
|
|
<echo message=" docs --------- generates the html docs"/>
|
|
<echo message=" cleandocs ---- cleans the build docs directory"/>
|
|
<echo message=" javadocs ----- generates the API documentation"/>
|
|
<echo message=" test --------- performs the jUnit tests"/>
|
|
<echo message=" clean -------- cleans the build directory"/>
|
|
<echo message=" dist --------- creates src and bin distributions"/>
|
|
<echo message=" contrib ------ build-run contributed components"/>
|
|
<taskdef name="user-input" classname="UserInput"
|
|
classpath="./tools/anttasks"/>
|
|
|
|
<property name="input.selection" value="compile"/>
|
|
<user-input name="input.selection">Please select a target </user-input>
|
|
|
|
<antcall target="${input.selection}"/>
|
|
|
|
</target>
|