You are viewing a plain text version of this content. The canonical link for it is here.
Posted to alexandria-dev@jakarta.apache.org by ni...@apache.org on 2002/11/29 10:47:25 UTC

cvs commit: jakarta-alexandria/proposal/gump build.xml

nicolaken    2002/11/29 01:47:25

  Modified:    proposal/gump build.xml
  Log:
  Adding classpath attribute to Jenny's jar because a simple "ant" was failing without it.
  Added two default properties, the workspace and the site style.
  
  Revision  Changes    Path
  1.11      +5 -1      jakarta-alexandria/proposal/gump/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/gump/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	27 Mar 2002 14:24:55 -0000	1.10
  +++ build.xml	29 Nov 2002 09:47:25 -0000	1.11
  @@ -13,6 +13,10 @@
   
   <project name="gump" default="scripts" basedir=".">
   
  +  <!-- Default properties. Define them before to override them.-->
  +  <property name="workspace" value="rubypad.xml"/>
  +  <property name="webstyle" value="jakarta.xsl"/>
  +      
     <!-- Build the code used to generate the merged xml scripts -->
     <target name="compile">
       <mkdir dir="classes"/>
  @@ -37,7 +41,7 @@
   
     <!-- Merge the xml sources, resolving references -->
     <target name="gen" depends="compile" unless="uptodate">
  -    <java classname="Jenny" fork="yes" failonerror="true">
  +    <java classname="Jenny" fork="yes" failonerror="true" classpath="jenny.jar">
         <arg value="${workspace}"/>
       </java>
     </target>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>