<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.apache</groupId>
    <artifactId>apache</artifactId>
    <version>4</version>
  </parent>

  <groupId>org.apache.continuum</groupId>
  <artifactId>continuum-parent</artifactId>
  <url>http://continuum.apache.org/</url>
  <version>2</version>
  <packaging>pom</packaging>

  <name>Apache Continuum</name>
  <description>Continuum is a continuous integration server for building maven1/2 projects, ant projects and shell projects.</description>

  <ciManagement>
    <system>continuum</system>
    <url>http://vmbuild.apache.org/</url>
  </ciManagement>

  <inceptionYear>2003</inceptionYear>

  <issueManagement>
    <system>jira</system>
    <url>http://jira.codehaus.org/browse/CONTINUUM</url>
  </issueManagement>

  <mailingLists>
    <mailingList>
      <name>Continuum User List</name>
      <post>users@continuum.apache.org</post>
      <subscribe>users-subscribe@continuum.apache.org</subscribe>
      <unsubscribe>users-unsubscribe@continuum.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/maven-continuum-users/</archive>
      <otherArchives>
        <otherArchive>http://www.mail-archive.com/continuum-users@maven.apache.org</otherArchive>
        <otherArchive>http://www.nabble.com/Continuum---Users-f13868.html</otherArchive>
        <otherArchive>http://continuum.markmail.org/</otherArchive>
      </otherArchives>
    </mailingList>
    <mailingList>
      <name>Continuum Development List</name>
      <post>dev@continuum.apache.org</post>
      <subscribe>dev-subscribe@continuum.apache.org</subscribe>
      <unsubscribe>dev-unsubscribe@continuum.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/maven-continuum-dev/</archive>
      <otherArchives>
        <otherArchive>http://www.mail-archive.com/continuum-dev@maven.apache.org</otherArchive>
        <otherArchive>http://www.nabble.com/Continuum---Dev-f13867.html</otherArchive>
        <otherArchive>http://markmail.org/list/org.apache.continuum-dev</otherArchive>
      </otherArchives>
    </mailingList>
    <mailingList>
      <name>Continuum Commits List</name>
      <subscribe>commits-subscribe@continuum.apache.org</subscribe>
      <unsubscribe>commits-unsubscribe@continuum.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/maven-continuum-commits/</archive>
      <otherArchives>
        <otherArchive>http://www.mail-archive.com/continuum-commits@maven.apache.org</otherArchive>
        <otherArchive>http://markmail.org/list/org.apache.continuum-commits</otherArchive>
      </otherArchives>
    </mailingList>
    <mailingList>
      <name>Continuum Issues List</name>
      <subscribe>issues-subscribe@continuum.apache.org</subscribe>
      <unsubscribe>issues-unsubscribe@continuum.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/maven-continuum-issues/</archive>
      <otherArchives>
        <otherArchive>http://www.mail-archive.com/continuum-issues@maven.apache.org</otherArchive>
        <otherArchive>http://markmail.org/list/org.apache.continuum-issues</otherArchive>
        <otherArchive>http://www.nabble.com/Continuum---Issues-f29618.html</otherArchive>
      </otherArchives>
    </mailingList>
  </mailingLists>
  
  <scm>
    <connection>scm:svn:https://svn.apache.org/repos/asf/continuum/parent/tags/continuum-parent-2</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/continuum/parent/tags/continuum-parent-2</developerConnection>
    <url>scm:svn:https://svn.apache.org/repos/asf/continuum/parent/tags/continuum-parent-2</url>
  </scm>  
  
  <distributionManagement>
    <repository>
      <id>continuum.staging</id>
      <url>scp://people.apache.org/www/people.apache.org/builds/continuum/${project.version}/staging-repo</url>
    </repository>
  </distributionManagement>

  <build>
    <plugins>
      <!-- We want to package up license resources in the JARs produced -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-remote-resources-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
            <configuration>
              <resourceBundles>
                <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
              </resourceBundles>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <pluginManagement>
      <plugins>
        <!-- set versions of common plugins for reproducibility, ordered alphabetically -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.0.2</version>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.3</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.2</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-gpg-plugin</artifactId>
          <version>1.0-alpha-4</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.2</version>
          <configuration>
            <archive>
              <manifest>
                <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              </manifest>
            </archive>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.4</version>
        </plugin>
        <!-- START SNIPPET: release-plugin-configuration -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-release-plugin</artifactId>
          <version>2.0-beta-7</version>
          <configuration>
            <!-- This element will be overriden by children -->
            <tagBase>https://svn.apache.org/repos/asf/continuum/parent/tags</tagBase>
            <useReleaseProfile>false</useReleaseProfile>
            <goals>deploy</goals>
            <arguments>-Prelease</arguments>
          </configuration>
        </plugin>
        <!-- END SNIPPET: release-plugin-configuration -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-remote-resources-plugin</artifactId>
          <version>1.0</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-site-plugin</artifactId>
          <version>2.0-beta-7</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-source-plugin</artifactId>
          <version>2.0.4</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.4.3</version>
        </plugin>
        <plugin>
          <artifactId>maven-idea-plugin</artifactId>
          <configuration>
            <jdkLevel>1.5</jdkLevel>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-eclipse-plugin</artifactId>
          <version>2.5.1</version>
          <configuration>
            <buildOutputDirectory>build</buildOutputDirectory>
          </configuration>
        </plugin>        
      </plugins>
    </pluginManagement>
  </build>

  <profiles>
    <profile>
      <id>ci</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-pmd-plugin</artifactId>
            <executions>
              <execution>
                <goals>
                  <goal>cpd-check</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>reporting</id>
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-checkstyle-plugin</artifactId>
            <configuration>
              <configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation>
              <headerLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt</headerLocation>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-pmd-plugin</artifactId>
            <configuration>
              <targetJdk>1.5</targetJdk>
            </configuration>            
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>cobertura-maven-plugin</artifactId>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>taglist-maven-plugin</artifactId>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jxr-plugin</artifactId>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
              <links>
                <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
                <link>http://java.sun.com/j2ee/1.4/docs/api</link>
                <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
                <link>http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/</link>
                <link>http://commons.apache.org/dbcp/apidocs/</link>
                <link>http://commons.apache.org/fileupload/apidocs/</link>
                <link>http://commons.apache.org/httpclient/apidocs/</link>
                <link>http://commons.apache.org/logging/apidocs/</link>
                <link>http://commons.apache.org/pool/apidocs/</link>
                <link>http://junit.sourceforge.net/javadoc/</link>
                <link>http://logging.apache.org/log4j/1.2/apidocs/</link>
                <link>http://jakarta.apache.org/regexp/apidocs/</link>
                <link>http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/</link>
              </links>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>clirr-maven-plugin</artifactId>
          </plugin>
        </plugins>
      </reporting>
    </profile>
    <!-- START SNIPPET: release-profile -->
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <!-- We want to sign the artifact, the POM, and all attached artifacts -->
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <configuration>
              <passphrase>${gpg.passphrase}</passphrase>
            </configuration>
            <executions>
              <execution>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <!-- We want to deploy the artifact to a staging location for perusal -->
          <plugin>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-deploy-plugin</artifactId>
            <configuration>
              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
              <updateReleaseInfo>true</updateReleaseInfo>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
    <!-- END SNIPPET: release-profile -->
  </profiles>


  <!-- Developers listed by PMC Chair, PMC, Committers, Contributers, all alphabetical-->
  <developers>
    <developer>
      <id>evenisse</id>
      <name>Emmanuel Venisse</name>
      <email>evenisse@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Chair</role>
      </roles>
      <timezone>+1</timezone>
    </developer>  
    <developer>
      <id>brett</id>
      <name>Brett Porter</name>
      <email>brett@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>+10</timezone>
    </developer>
    <developer>
      <id>carlos</id>
      <name>Carlos Sanchez</name>
      <email>carlos@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>epunzalan</id>
      <name>Edwin Punzalan</name>
      <email>epunzalan@apache.org</email>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>-8</timezone>
    </developer>    
    <developer>
      <id>handyande</id>
      <name>Andrew Williams</name>
      <email>handyande@apache.org</email>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>0</timezone>
    </developer>    
    <developer>
      <id>joakime</id>
      <name>Joakim Erdfelt</name>
      <email>joakime@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>-5</timezone>
    </developer>
    <developer>
      <id>jmcconnell</id>
      <name>Jesse McConnell</name>
      <email>jmcconnell@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>-6</timezone>
    </developer>
    <developer>
      <id>kenney</id>
      <name>Kenney Westerhof</name>
      <email>kenney@apache.org</email>
      <organization>Neonics</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>oching</id>
      <name>Maria Odea B. Ching</name>
      <roles>
        <role>PMC Member</role>
      </roles>
    </developer>    
    <developer>
      <id>olamy</id>
      <name>Olivier Lamy</name>
      <email>olamy@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>+1</timezone>
    </developer>    
    <developer>
      <id>rinku</id>
      <name>Rahul Thakur</name>
      <roles>
        <role>PMC Member</role>
      </roles>
    </developer>    
    <developer>
      <id>trygvis</id>
      <name>Trygve Laugstol</name>
      <email>trygvis@apache.org</email>
      <organization>ASF</organization>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>wsmoak</id>
      <name>Wendy Smoak</name>
      <email>wsmoak@apache.org</email>
      <roles>
        <role>PMC Member</role>
      </roles>
      <timezone>-7</timezone>
    </developer>
    <!--Committers-->
    <developer>
      <id>ctan</id>
      <name>Maria Catherine Tan</name>
      <email>ctan@apache.org</email>
      <roles>
        <role>Committer</role>
      </roles>
      <timezone>+8</timezone>
    </developer>
    <!--Emeritus Committers-->
    <developer>
      <id>jvanzyl</id>
      <name>Jason van Zyl</name>
      <roles>
        <role>Emeritus Committer</role>
      </roles>
    </developer>
  </developers>

  <contributors>
    <contributor>
      <name>Franck Hugot</name>
    </contributor>
    <contributor>
      <name>Xavier Marc</name>
    </contributor>
    <contributor>
      <name>Bastiaan Bakker</name>
    </contributor>
    <contributor>
      <name>Damien Lecan</name>
    </contributor>
    <contributor>
      <name>Hilco Wijbenga</name>
    </contributor>
    <contributor>
      <name>Damien Blugeon</name>
    </contributor>
    <contributor>
      <name>Yudong Wang</name>
    </contributor>
    <contributor>
      <name>George Gastaldi</name>
    </contributor>
    <contributor>
      <name>Tomislav Stojcevich</name>
    </contributor>
    <contributor>
      <name>David Causse</name>
    </contributor>
    <contributor>
      <name>Teodoro Cue Jr.</name>
    </contributor>
    <contributor>
      <name>Thierry Lach</name>
    </contributor>
    <contributor>
      <name>Dário Oliveros</name>
    </contributor>
    <contributor>
      <name>Tom Cort</name>
    </contributor>
    <contributor>
      <name>Napoleon Esmundo C. Ramirez</name>
    </contributor>
    <contributor>
      <name>Jan Ancajas</name>
    </contributor>
    <contributor>
      <name>Lester Ecarma</name>
    </contributor>
    <contributor>
      <name>Iouri Goussev</name>
    </contributor>
    <contributor>
      <name>Henry S. Isidro</name>
    </contributor>
    <contributor>
      <name>Marcelo Takeshi Fukushima</name>
    </contributor>
    <contributor>
      <name>Franz Allan Valencia See</name>
    </contributor>
    <contributor>
      <name>John Didion</name>
    </contributor>
    <contributor>
      <name>Valerie Lavilla</name>
    </contributor>
    <contributor>
      <name>Marvin King</name>
    </contributor>
    <contributor>
      <name>Evan Ernst</name>
    </contributor>
    <contributor>
      <name>Mang Lau</name>
    </contributor>
    <contributor>
      <name>Dennis Lundberg</name>
    </contributor>
    <contributor>
      <name>Milos Kleint</name>
    </contributor>
    <contributor>
      <name>Dan Tran</name>
    </contributor>
    <contributor>
      <name>Nick Gonzalez</name>
    </contributor>
    <contributor>
      <name>Alex Mayorgaadame</name>
    </contributor>
    <contributor>
      <name>Andreas Hoheneder</name>
    </contributor>
    <contributor>
      <name>Matthew Beermann</name>
    </contributor>
    <contributor>
      <name>Scott Schram</name>
    </contributor>
    <contributor>
      <name>Miguel Griffa</name>
    </contributor>
    <contributor>
      <name>Jevica Arianne B. Zurbano</name>
    </contributor>
    <contributor>
      <name>John Michael Luy</name>
    </contributor>
    <contributor>
      <name>Fabrice Daugan</name>
    </contributor>
  </contributors>

</project>
