You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/01/01 00:26:16 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/ant plugin.jelly

dion        2002/12/31 15:26:16

  Modified:    src/plugins-build/gump plugin.jelly
               src/plugins-build/ant plugin.jelly
  Log:
  Change use of namespaces so that the current caching bug is worked around
  
  Revision  Changes    Path
  1.10      +7 -9      jakarta-turbine-maven/src/plugins-build/gump/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/gump/plugin.jelly,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- plugin.jelly	24 Oct 2002 07:23:39 -0000	1.9
  +++ plugin.jelly	31 Dec 2002 23:26:16 -0000	1.10
  @@ -1,10 +1,8 @@
   <?xml version="1.0"?>
   
  -<jj:project 
  +<project 
     xmlns:j="jelly:core" 
  -  xmlns:jj="jelly:jeez" 
  -  xmlns:u="jelly:util"
  -  xmlns="dummy">
  +  xmlns:u="jelly:util">
   
     <!-- ================================================================== -->
     <!-- G U M P  D E S C R I P T O R                                       -->
  @@ -16,14 +14,14 @@
     <!-- for Gump will be correct. Distribution of responsibility.          -->
     <!-- ================================================================== -->
   
  -  <jj:goal name="gump"
  +  <goal name="gump"
              description="Generate Gump descriptor from Maven descriptor"
              prereqs="gump:generate-descriptor"/>
   
  -  <jj:goal name="gump:generate-descriptor"
  +  <goal name="gump:generate-descriptor"
              description="Generate Gump descriptor from Maven descriptor">
   
  -    <j:file name="gump.xml" prettyPrint="true" >
  +    <j:file name="gump.xml" prettyPrint="true" xmlns="dummy">
   <module name="${pom.id}">
   
     <description>${pom.shortDescription}</description>
  @@ -87,6 +85,6 @@
   </module>
       </j:file>
     
  -  </jj:goal>
  +  </goal>
     
  -</jj:project>
  +</project>
  
  
  
  1.22      +7 -9      jakarta-turbine-maven/src/plugins-build/ant/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ant/plugin.jelly,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- plugin.jelly	13 Dec 2002 16:47:03 -0000	1.21
  +++ plugin.jelly	31 Dec 2002 23:26:16 -0000	1.22
  @@ -1,10 +1,8 @@
   <?xml version="1.0"?>
   
  -<jj:project 
  +<project 
     xmlns:j="jelly:core" 
  -  xmlns:jj="jelly:jeez" 
  -  xmlns:u="jelly:util"
  -  xmlns="dummy">
  +  xmlns:u="jelly:util">
   
     <!-- ================================================================== -->
     <!-- A N T  B U I L D  G E N E R A T O R                                -->
  @@ -16,16 +14,16 @@
     <!-- people who want to build from sources but don't want to use Maven. -->
     <!-- ================================================================== -->
   
  -  <jj:goal name="ant"
  +  <goal name="ant"
              description="Generate an Ant build file"
              prereqs="ant:generate-build"/>
   
  -  <jj:goal
  +  <goal
       name="ant:generate-build"
       description="Generate an Ant build file">
   
       <j:file name="${maven.ant.generatebuild.file}">
  -    <j:whitespace>
  +    <j:whitespace xmlns="dummy">
   <project name="${pom.id}" default="jar" basedir=".">
     
     <property name="defaulttargetdir" value="target"/> 
  @@ -368,6 +366,6 @@
       </j:whitespace>
       </j:file>
     
  -  </jj:goal>
  +  </goal>
     
  -</jj:project>
  +</project>