CVS: plexus-components/summit maven.xml,NONE,1.1

[email protected] Fri, 2 May 2003 07:47:32 -0500
Newsgroups gmane.comp.java.plexus.devel
Message-ID <[email protected]>
Update of /cvsroot/plexus/plexus-components/summit
In directory eng.werken.com:/tmp/cvs-serv26524

Added Files:
	maven.xml 
Log Message:
o We need to assemble a small test application that can be tested.


--- NEW FILE: maven.xml ---
<project
  default="jar:jar"
  xmlns:j="jelly:core"
  xmlns:maven="jelly:maven"
  xmlns:sea="sea"
  xmlns:plexus="plexus">

  <goal name="getting-started">

    <attainGoal name="test-rt"/>

  </goal> 
   
  <!--
   | 
   | Build the Test Plexus Runtime.
   |
   -->
  
  <goal name="test-rt">

    <j:set var="base" value="${basedir}/target/runtime"/>

    <plexus:deploy
      base="${base}"
      conf="plexus.conf"
      confDir="${basedir}/src/conf"
      modelPom="${basedir}/project.xml"
      plexusPomFile="${maven.repo.local}/plexus/poms/plexus-0.3.pom"
      configurationProperties="${basedir}/${target}.properties"/>
      
    <attainGoal name="augment-runtime"/>
    
  </goal>

  <goal name="augment-runtime">
  </goal>                                               
      
</project>