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/20 01:49:33 UTC

cvs commit: jakarta-turbine-maven project-maven.xml

jvanzyl     02/02/19 16:49:33

  Added:       .        project-maven.xml
  Log:
  - adding a project descriptor for maven so geir and i can play with
    the docs.
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-maven/project-maven.xml
  
  Index: project-maven.xml
  ===================================================================
  <project>
    
    <name>jakarta-turbine-maven</name>
    
    <description>
      <p>
        Maven: a person who has special knowledge or experience; an expert
        or connoisseur. In short, Maven strives to be a Java project expert. The
        entire concept of Maven is based around an object model for a project.
      </p>
      
      <p>
        <li>distinguish between compile/runtime/optional dependencies</li>
        <li>build a project and all its dependencies from source</li>
        <li>build a project against all its dependencies in binary form</li>
        <li>create comprehensive sets of information for a project</li>
        <li>provides metrics for your Java project</li>
        <li>provides a standard build file for your project</li>
        <li>provides a recommended directory structure for your Java project</li>
        <li>provides continuous integration</li>
      </p>
    </description>
  
    </description>
    
    <url>http://jakarta.apache.org/turbine/maven/</url>
    <cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-turbine-maven/</cvsWebUrl>
    
    <repository id="jakarta"/>
  
    <mailingLists>
      <mailingList>
        <name>Turbine User List</name>
        <subscribe>turbine-user-subscribe@jakarta.apache.org</subscribe>
        <unsubscribe>turbine-user-unsubscribe@jakarta.apache.org</unsubscribe>
        <archive>http://www.mail-archive.com/turbine-user@jakarta.apache.org/</archive>
      </mailingList>
      <mailingList>
        <name>Turbine Developer List</name>
        <subscribe>mailto:turbine-dev-subscribe@jakarta.apache.org</subscribe>
        <unsubscribe>mailto:turbine-dev-unsubscribe@jakarta.apache.org</unsubscribe>
        <archive>http://www.mail-archive.com/turbine-dev@jakarta.apache.org/</archive>
      </mailingList>
    </mailingLists>
  
    <developers>
  
      <developer>
        <name>Pete Kazmier</name>
        <email>pete@kazmier.com</email>
        <organization></organization>
      </developer>
  
      <developer>
        <name>Jason van Zyl</name>
        <email>jason@zenplex.com</email>
        <organization>Zenplex</organization>
      </developer>
    
    </developers>
    
  
    <!-- Need to mark these as compile-time/run-time -->
  
    <dependencies>
          
      <dependency>
        <name>jakarta-turbine-stratum</name>
        <type>required</type>
        <version>0.1</version>
      </dependency>
              
      <dependency>
        <name>jakarta-velocity</name>
        <type>required</type>
        <version>1.2</version>
      </dependency>
              
      <dependency>
        <name>jakarta-log4j</name>
        <type>required</type>
        <version>1.1</version>
      </dependency>
              
    </dependencies>
    
    <build>
      
      <!-- J A R  R E S O U R C E S -->
      <!-- Resources that are packaged up inside the JAR file -->
      
      <jarResources>
      </jarResources>
      
      <!-- Unit test classes -->
      <unitTestClassEntries>
      </unitTestClassEntries>  
  
      <!-- Runtime unit test classes -->
      <runtimeTestClassEntries>
      </runtimeTestClassEntries>  
  
      <sourceDirectories>
      </sourceDirectories>  
  
      <testSourceDirectories>
      </testSourceDirectories>  
  
      <aspectSourceDirectories>
      </aspectSourceDirectories>  
  
      <jars>
      </jars>  
    </build>
  </project>
  
  
  
  

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