You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/05/30 10:13:50 UTC

cvs commit: jakarta-commons-sandbox/jelly project.properties build.xml project.xml

jstrachan    02/05/30 01:13:50

  Modified:    jelly    project.properties build.xml project.xml
  Log:
  Added an Ant tag library which can invoke Ant tasks from inside a Jelly script. 
  Invoking Tasks is working fine, though support for Ant DataTypes isn't quite working yet (like nested <classpath> elements). Should have that working soon.
  
  Also added a new DynaBeanTagSupport class for developers wishing to use a DynaBean to hold tag attribute values.
  
  Revision  Changes    Path
  1.4       +3 -3      jakarta-commons-sandbox/jelly/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/project.properties,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.properties	21 May 2002 16:53:26 -0000	1.3
  +++ project.properties	30 May 2002 08:13:50 -0000	1.4
  @@ -2,9 +2,9 @@
   # P R O J E C T  P R O P E R T I E S
   # -------------------------------------------------------------------
   
  -compile.debug = on
  -compile.optimize = off
  -compile.deprecation = off
  +maven.compile.debug = on
  +maven.compile.optimize = off
  +maven.compile.deprecation = off
   
   maven.jarResources.basedir=${basedir}/src/java
    
  
  
  
  1.32      +7 -0      jakarta-commons-sandbox/jelly/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/build.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- build.xml	29 May 2002 06:38:11 -0000	1.31
  +++ build.xml	30 May 2002 08:13:50 -0000	1.32
  @@ -217,6 +217,13 @@
   	
      </target>
   
  +   <target name="demo.ant.task" depends="compile" 
  +      description="Runs demo which invokes Ant tasks">
  +      
  +	<jelly file="src/test/org/apache/commons/jelly/example_ant_tasks.jelly"/>
  +	
  +   </target>
  +
      <target name="demo.xml" depends="compile" 
         description="Runs a simple demo of the XML tags">
         
  
  
  
  1.9       +2 -2      jakarta-commons-sandbox/jelly/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/project.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- project.xml	25 May 2002 18:49:31 -0000	1.8
  +++ project.xml	30 May 2002 08:13:50 -0000	1.9
  @@ -59,8 +59,8 @@
       <dependency>
         <name>commons-beanutils</name>
         <type>required</type>
  -      <version>20020520</version>
  -      <jar>commons-beanutils-20020520.jar</jar>
  +      <version>1.4-dev</version>
  +      <jar>commons-beanutils-1.4-dev.jar</jar>
       </dependency>
   
       <dependency>
  
  
  

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