You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by jv...@apache.org on 2002/02/22 18:04:57 UTC

cvs commit: jakarta-turbine-maven/src/dvsl/gump convert-project.dvsl

jvanzyl     02/02/22 09:04:56

  Added:       src/dvsl/gump convert-project.dvsl
  Log:
  - dvsl xformation to turn any maven project descriptor into a gump
    descriptor used for biggie builds.
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-maven/src/dvsl/gump/convert-project.dvsl
  
  Index: convert-project.dvsl
  ===================================================================
  #match("project")
  <module name="$context.applyTemplates("name")"/>
    <description>$context.applyTemplates("shortDescription")</description>
    <url href="$context.applyTemplates("url")"/>
    <cvs repository="$context.applyTemplates("repository")"/>
    
    <project name="$context.applyTemplates("name")">
      <ant target="dist"/>
      $context.applyTemplates("//dependencies/depend")
    </project>
  
  </module>
  #end
  
  #match("shortDescription")$context.node#end
  #match("name")$context.node#end
  #match("url")$context.node#end
  #match("repository")$attrib.id#end
  
  
  

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