<!--                                                                        -->
<!--Copyright 2001-2005 The Apache Software Foundation.                     -->
<!--                                                                        -->
<!--Licensed 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">  
  <parent>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>mojo-parent</artifactId>
    <version>20</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>rpm-maven-plugin</artifactId>
  <packaging>maven-plugin</packaging>
  <name>RPM Maven Plugin</name>
  <version>2.0-beta-2</version>
  <description>
    Maven plugin which assembles files into an RPM package for installation on various target UNIX systems.
  </description>
  <inceptionYear>2005</inceptionYear>
  <url>http://mojo.codehaus.org/rpm-maven-plugin/</url>
  <prerequisites>
    <maven>2.0.6</maven>
  </prerequisites>
  <ciManagement>
    <system>continuum</system>
    <notifiers>
      <notifier>
        <type>mail</type>
        <configuration>
          <address>boba@codehaus.org</address>
        </configuration>
      </notifier>
    </notifiers>
  </ciManagement>
  <scm>
    <url>http://fisheye.codehaus.org/browse/mojo/tags/rpm-maven-plugin-2.0-beta-2</url>
    <connection>scm:svn:https://svn.codehaus.org/mojo/tags/rpm-maven-plugin-2.0-beta-2</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/rpm-maven-plugin-2.0-beta-2</developerConnection>
  </scm>
  <developers>
    <developer>
      <id>boba</id>
      <name>Bob Allison</name>
      <email>boba@codehaus.org</email>
      <organization>None</organization>
      <roles>
        <role>Creator</role>
        <role>Java Developer</role>
      </roles>
    </developer>
    <developer>
        <id>bokken</id>
        <name>Brett Okken</name>
        <email>bokken@cerner.com</email>
        <organization>Cerner</organization>
        <organizationUrl>http://www.cerner.com</organizationUrl>
        <timezone>-6</timezone>
        <roles>
            <role>Java Developer</role>
        </roles>
    </developer>
  </developers>
  <contributors>
    <contributor>
      <name>Kaare Nilsen</name>
      <email>kaare.nilsen@gmail.com</email>
      <organization>Artekk AS</organization>
      <organizationUrl>http://arktekk.no</organizationUrl>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
  </contributors>
  
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <build>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-archiver</artifactId>
      <version>1.0-alpha-5</version>
    </dependency>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
      <version>1.5.7</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-artifact</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-project</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-model</artifactId>
        <version>2.0</version>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-changes-plugin</artifactId>
        <version>2.1</version>
        <configuration>
            <issueLinkTemplatePerSystem>
                <jira>%URL%/%ISSUE%</jira>
            </issueLinkTemplatePerSystem>
        </configuration>
        <reportSets>
          <reportSet>
            <reports>
              <report>changes-report</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
    </plugins>
  </reporting>
</project>
