]> source.dussan.org Git - poi.git/commitdiff
Readded support for generating records. Hope this helps Andy.
authorGlen Stampoultzis <glens@apache.org>
Sat, 16 Mar 2002 08:59:16 +0000 (08:59 +0000)
committerGlen Stampoultzis <glens@apache.org>
Sat, 16 Mar 2002 08:59:16 +0000 (08:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352225 13f79535-47bb-0310-9956-ffa450edef68

src/targets/interactive.xtarget
src/targets/project.xtarget

index 3d17e26355b073742d2bd79d9251891522fa5321..d6413bccebcb111033918375528635c8ba0663d1 100644 (file)
     <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=" scratchpad --- build-run scratchpad code"/>       
-    <echo message=" contrib ------ build-run contributed code"/>    
+    <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=" scratchpad ------- build-run scratchpad code"/>       
+    <echo message=" contrib ---------- build-run contributed code"/>    
+    <echo message=" generate-records - generate excel records"/>    
 
     <property name="input.selection" value="compile"/>        
     <user-input name="input.selection">Please select a target </user-input>   
index bae5fa9ec770beaeaab03aa4e3b70e49cbd89a6f..09240dd7cd3d4eb3e0938c4eb3c07fb7d8cad489 100644 (file)
@@ -2,6 +2,22 @@
   <!-- Extra targets for this project                                      -->
   <!-- =================================================================== -->
 
+  <target name="generate-records" depends="prepare"
+     description="Generates the record source code">
+
+      <java classname="org.apache.poi.hssf.util.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="ABC" description="Abc" depends="init">