mirror of https://github.com/apache/poi.git
Corrected scratchpad targets (generate-*)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352263 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7845b745c2
commit
73253a429b
|
@ -1,20 +0,0 @@
|
|||
|
||||
<project default="generate-records" basedir=".." name="generate-records">
|
||||
<target name="generate-records" depends="prepare"
|
||||
description="Generates the record source code">
|
||||
|
||||
<java classname="org.apache.poi.dev.RecordGenerator" fork="yes">
|
||||
<arg value="src/records/definitions"/>
|
||||
<arg value="src/records/styles"/>
|
||||
<arg value="src/java"/>
|
||||
<arg value="src/testcases"/>
|
||||
<classpath>
|
||||
<path refid="scratchpad.classpath"/>
|
||||
<pathelement location="${build.scratchpad.dest}"/>
|
||||
</classpath>
|
||||
</java>
|
||||
|
||||
</target>
|
||||
</project>
|
||||
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
<project default="generate-types" basedir=".." name="generate-types">
|
||||
<target name="generate-types" depends="prepare"
|
||||
description="Generates the record source code">
|
||||
|
||||
<java classname="org.apache.poi.dev.RecordGenerator" fork="yes">
|
||||
<arg value="src/types/definitions"/>
|
||||
<arg value="src/types/styles"/>
|
||||
<arg value="src/scratchpad/src"/>
|
||||
<arg value="src/scratchpad/testcases"/>
|
||||
<classpath>
|
||||
<path refid="scratchpad.classpath"/>
|
||||
<pathelement location="${build.scratchpad.dest}"/>
|
||||
</classpath>
|
||||
</java>
|
||||
|
||||
</target>
|
||||
</project>
|
|
@ -1,7 +1,7 @@
|
|||
<!-- =================================================================== -->
|
||||
<!-- Interactive scratchpad builds -->
|
||||
<!-- =================================================================== -->
|
||||
<target name="scratchpad" depends="init" description="Interactive Scratchpad Build">
|
||||
<target name="scratchpad" depends="prepare" description="Interactive Scratchpad Build">
|
||||
<echo message="--------------------------------------------------------------"/>
|
||||
<echo message=" "/>
|
||||
<echo message=" ${fullname} ${version} SCRATCHPAD "/>
|
||||
|
@ -25,6 +25,38 @@
|
|||
<property name="input.selection" value=""/>
|
||||
<user-input name="input.selection">Please select a target </user-input>
|
||||
|
||||
<ant antfile="src/scratchpad/targets/${input.selection}.xml"/>
|
||||
<antcall target="${input.selection}"/>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="generate-records" depends="prepare"
|
||||
description="Generates the record source code">
|
||||
|
||||
<java classname="org.apache.poi.dev.RecordGenerator" fork="yes">
|
||||
<arg value="src/records/definitions"/>
|
||||
<arg value="src/records/styles"/>
|
||||
<arg value="src/java"/>
|
||||
<arg value="src/testcases"/>
|
||||
<classpath>
|
||||
<path refid="scratchpad.classpath"/>
|
||||
<pathelement location="${build.scratchpad.dest}"/>
|
||||
</classpath>
|
||||
</java>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="generate-types" depends="prepare"
|
||||
description="Generates the record source code">
|
||||
|
||||
<java classname="org.apache.poi.dev.RecordGenerator" fork="yes">
|
||||
<arg value="src/types/definitions"/>
|
||||
<arg value="src/types/styles"/>
|
||||
<arg value="src/scratchpad/src"/>
|
||||
<arg value="src/scratchpad/testcases"/>
|
||||
<classpath>
|
||||
<path refid="scratchpad.classpath"/>
|
||||
<pathelement location="${build.scratchpad.dest}"/>
|
||||
</classpath>
|
||||
</java>
|
||||
|
||||
</target>
|
|
@ -51,7 +51,7 @@
|
|||
<pathelement path="${build.root}/jakarta-poi/classes"/>
|
||||
</path>
|
||||
|
||||
<path id="scratchpad.classpath">
|
||||
<path id="scratchpad.classpath">
|
||||
<fileset dir="./lib/endorsed">
|
||||
<include name="*.jar"/>
|
||||
</fileset>
|
||||
|
|
Loading…
Reference in New Issue