kaz         02/03/25 13:57:19

  Added:       .        build-maven.xml project.xml
  Log:
  Added a build-maven.xml file and a simple project-descriptor for the
  turbine-site.  This lets you deploy the turbine site using maven (first
  documentation-only usage of maven).
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-site/build-maven.xml
  
  Index: build-maven.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project name="maven" default="maven:jar" basedir=".">
  
    <!-- Give user a chance to override without editing this file
         (and without typing -D each time they invoke a target) -->
  
    <!-- Allow any user specific values to override the defaults -->
    <property file="${user.home}/build.properties" />
    <!-- Allow user defaults for this project -->
    <property file="build.properties" />
    <!-- Set default values for the build -->
    <property file="project.properties" />
  
    <!-- maven:start -->
    
    <!-- ================================================================== -->
    <!-- D E L E G A T O R S                                                -->
    <!-- ================================================================== -->
          
      <target 
        name="maven:site">
        <ant antfile="${maven.home}/build-docs.xml" target="site"/>
      </target>
          
      <target 
        name="maven:jar">
        <ant antfile="${maven.home}/build-maven.xml" target="jar"/>
      </target>
          
      <target 
        name="maven:install-jar">
        <ant antfile="${maven.home}/build-maven.xml" target="install-jar"/>
      </target>
          
      <target 
        name="maven:env">
        <ant antfile="${maven.home}/build-maven.xml" target="env"/>
      </target>
          
      <target 
        name="maven:docs">
        <ant antfile="${maven.home}/build-docs.xml" target="docs"/>
      </target>
          
      <target 
        name="maven:test">
        <ant antfile="${maven.home}/build-test.xml" target="test"/>
      </target>
  
      <target 
        name="maven:singletest">
        <ant antfile="${maven.home}/build-test.xml" target="run-singletest"/>
      </target>
            
      <target 
        name="maven:clean">
        <ant antfile="${maven.home}/build-maven.xml" target="clean"/>
      </target>
          
      <target 
        name="maven:metrics">
        <ant antfile="${maven.home}/build-metrics.xml" target="metrics"/>
      </target>
          
      <target 
        name="maven:dist">
        <ant antfile="${maven.home}/build-maven.xml" target="dist"/>
      </target>
          
      <target 
        name="maven:deploy-site">
        <ant antfile="${maven.home}/build-docs.xml" target="deploy-site"/>
      </target>
          
      <target 
        name="maven:gump-descriptor">
        <ant antfile="${maven.home}/build-maven.xml" target="gump-descriptor"/>
      </target>
          
      <target 
        name="maven:javadocs">
        <ant antfile="${maven.home}/build-docs.xml" target="javadocs"/>
      </target>
          
      <target 
        name="maven:compile">
        <ant antfile="${maven.home}/build-maven.xml" target="compile"/>
      </target>
          
      <target 
        name="maven:update-jars">
        <ant antfile="${maven.home}/build-maven.xml" target="update-jars"/>
      </target>
      
    <!-- maven:end -->
  
  </project>
  
  
  
  1.1                  jakarta-turbine-site/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0"?>
  <project>
  
    <name>jakarta-turbine-site</name>
    <id>turbine</id>
    <currentVersion>1.0</currentVersion>
    <organization>Apache Software Foundation</organization>
    <inceptionYear>2000</inceptionYear>
    <package>org.apache.turbine</package>
  
    <shortDescription>
      A servlet based framework.
    </shortDescription>
  
    <description>
      Turbine is a servlet based framework that allows experienced Java
      developers to quickly build secure web applications. Parts of
      Turbine can also be used independently of the web portion of Turbine
      as well. In other words, we strive to make portions of Turbine
      easily available for use in other applications.
    </description>
  
    <url>http://jakarta.apache.org/turbine/</url>
    <cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-turbine-site/</cvsWebUrl>
    <siteAddress>jakarta.apache.org</siteAddress>
    <siteDirectory>/www/jakarta.apache.org/turbine/</siteDirectory>
  
    <mailingLists>
      <mailingList>
        <name>Turbine User List</name>
        <subscribe>[EMAIL PROTECTED]</subscribe>
        <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
        <archive>http://www.mail-archive.com/[email protected]/</archive>
      </mailingList>
      <mailingList>
        <name>Turbine Developer List</name>
        <subscribe>mailto:[EMAIL PROTECTED]</subscribe>
        <unsubscribe>mailto:[EMAIL PROTECTED]</unsubscribe>
        <archive>http://www.mail-archive.com/[email protected]/</archive>
      </mailingList>
    </mailingLists>
  
    <developers>
  
      <developer>
        <name>Jeff Brekke</name>
        <id>brekke</id>
        <email>[EMAIL PROTECTED]</email>
        <organization></organization>
      </developer>
  
       <developer>
        <name>Fedor Karpelevitch</name>
        <id>fedor</id>
        <email>[EMAIL PROTECTED]</email>
        <organization></organization>
      </developer>
  
      <developer>
        <name>John McNally</name>
        <id>jmcnally</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>CollabNet, Inc.</organization>
      </developer>
  
      <developer>
        <name>Martin Poeschl</name>
        <id>mpoeschl</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>Zenplex</organization>
      </developer>
  
      <developer>
        <name>Daniel Rall</name>
        <id>dlr</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>CollabNet, Inc.</organization>
      </developer>
  
      <developer>
        <name>Jon Scott Stevens</name>
        <id>jon</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>CollabNet, Inc.</organization>
      </developer>
  
      <developer>
        <name>Jason van Zyl</name>
        <id>jvanzyl</id>
        <email>[EMAIL PROTECTED]</email>
        <organization>Zenplex</organization>
      </developer>
  
    </developers>
  
    <!-- Need to mark these as compile-time/run-time -->
  
    <dependencies>
    </dependencies>
  
    <build>
  
      <sourceDirectories>
      </sourceDirectories>
  
      <testSourceDirectories>
      </testSourceDirectories>
  
      <aspectSourceDirectories>
      </aspectSourceDirectories>
  
      <!-- Unit test classes -->
      <unitTestClassEntries>
      </unitTestClassEntries>
  
      <!-- Runtime unit test classes -->
      <runtimeTestClassEntries>
      </runtimeTestClassEntries>
  
      <!-- J A R  R E S O U R C E S -->
      <!-- Resources that are packaged up inside the JAR file -->
  
      <jarResources>
      </jarResources>
  
      <jars>
      </jars>
    </build>
  </project>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to