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/02/08 14:14:17 UTC

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

dion        2003/02/08 05:14:17

  Modified:    src/plugins-build/ant project.xml plugin.jelly
  Log:
  Add comment to generated build file as per suggestion from Geir
  
  Revision  Changes    Path
  1.2       +13 -0     jakarta-turbine-maven/src/plugins-build/ant/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ant/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml	24 Jan 2003 03:44:35 -0000	1.1
  +++ project.xml	8 Feb 2003 13:14:17 -0000	1.2
  @@ -42,5 +42,18 @@
       </developer>
     </developers>
     
  +  <dependencies>
  +
  +    <dependency>
  +      <groupId>commons-jelly</groupId>
  +      <artifactId>commons-jelly-tags-xml</artifactId>
  +      <version>SNAPSHOT</version>
  +      <properties>
  +        <classloader>root.maven</classloader>
  +      </properties>
  +    </dependency>
  +    
  +  </dependencies>
  +
   </project>
   
  
  
  
  1.2       +7 -1      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.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.jelly	24 Jan 2003 03:44:35 -0000	1.1
  +++ plugin.jelly	8 Feb 2003 13:14:17 -0000	1.2
  @@ -2,7 +2,8 @@
   
   <project 
     xmlns:j="jelly:core" 
  -  xmlns:u="jelly:util">
  +  xmlns:u="jelly:util"
  +  xmlns:x="jelly:xml">
   
     <!-- ================================================================== -->
     <!-- A N T  B U I L D  G E N E R A T O R                                -->
  @@ -22,8 +23,13 @@
       name="ant:generate-build"
       description="Generate an Ant build file">
   
  +    <tstamp />
       <j:file name="${maven.ant.generatebuild.file}" prettyPrint="true">
       <j:whitespace xmlns="dummy">
  +<x:comment>
  +  build.xml generated by maven from project.xml version ${pom.currentVersion}
  +  on date ${TODAY}, time ${TSTAMP}
  +</x:comment>
   <project name="${pom.artifactId}" default="jar" basedir=".">
     
     <property name="defaulttargetdir" value="target"/>