Home | History | Annotate | Download | only in 2.4.1
      1 <?xml version='1.0' encoding='UTF-8'?>
      2 <!--
      3   Licensed to the Apache Software Foundation (ASF) under one
      4   or more contributor license agreements.  See the NOTICE file
      5   distributed with this work for additional information
      6   regarding copyright ownership.  The ASF licenses this file
      7   to you under the Apache License, Version 2.0 (the
      8   "License"); you may not use this file except in compliance
      9   with the License.  You may obtain a copy of the License at 
     10   http://www.apache.org/licenses/LICENSE-2.0
     11   
     12   Unless required by applicable law or agreed to in writing,
     13   software distributed under the License is distributed on an
     14   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     15   KIND, either express or implied.  See the License for the
     16   specific language governing permissions and limitations
     17   under the License.
     18 -->
     19 <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/xsd/maven-4.0.0.xsd">
     20   <modelVersion>4.0.0</modelVersion>
     21 
     22   <parent>
     23     <groupId>org.apache.maven.shared</groupId>
     24     <artifactId>maven-shared-components</artifactId>
     25     <version>15</version>
     26   </parent>
     27 
     28   <groupId>org.apache.maven</groupId>
     29   <artifactId>maven-archiver</artifactId>
     30   <version>2.4.1</version>
     31 
     32   <name>Maven Archiver</name>
     33   <description>Provides utility methods for creating JARs and other archive files from a Maven project.</description>
     34 
     35   <prerequisites>
     36     <maven>${mavenVersion}</maven>
     37   </prerequisites>
     38 
     39   <scm>
     40     <connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-2.4.1</connection>
     41     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-2.4.1</developerConnection>
     42     <url>http://svn.apache.org/viewvc/maven/shared/tags/maven-archiver-2.4.1</url>
     43   </scm>
     44   <issueManagement>
     45     <system>jira</system>
     46     <url>http://jira.codehaus.org/browse/MSHARED/component/13268</url>
     47   </issueManagement>
     48 
     49   <properties>
     50     <mavenVersion>2.0.6</mavenVersion>
     51   </properties>
     52 
     53   <dependencies>
     54     <dependency>
     55       <groupId>org.apache.maven</groupId>
     56       <artifactId>maven-artifact</artifactId>
     57       <version>${mavenVersion}</version>
     58     </dependency>
     59     <dependency>
     60       <groupId>org.apache.maven</groupId>
     61       <artifactId>maven-model</artifactId>
     62       <version>${mavenVersion}</version>
     63     </dependency>
     64     <dependency>
     65       <groupId>org.apache.maven</groupId>
     66       <artifactId>maven-project</artifactId>
     67       <version>${mavenVersion}</version>
     68       <scope>provided</scope>
     69       <exclusions>
     70         <exclusion>
     71           <groupId>org.apache.maven</groupId>
     72           <artifactId>maven-artifact-manager</artifactId>
     73         </exclusion>
     74       </exclusions>
     75     </dependency>
     76     <dependency>
     77       <groupId>org.codehaus.plexus</groupId>
     78       <artifactId>plexus-archiver</artifactId>
     79       <version>1.0</version>
     80     </dependency>
     81     <dependency>
     82       <groupId>org.codehaus.plexus</groupId>
     83       <artifactId>plexus-utils</artifactId>
     84       <version>2.0.5</version>
     85     </dependency>
     86     <dependency>
     87       <groupId>org.codehaus.plexus</groupId>
     88       <artifactId>plexus-interpolation</artifactId>
     89       <version>1.13</version>
     90     </dependency>
     91     <dependency>
     92       <groupId>junit</groupId>
     93       <artifactId>junit</artifactId>
     94       <version>3.8.2</version>
     95       <scope>test</scope>
     96     </dependency>
     97   </dependencies>
     98 
     99   <reporting>
    100     <plugins>
    101       <plugin>
    102         <artifactId>maven-changes-plugin</artifactId>
    103         <version>2.0-beta-3</version>
    104         <configuration>
    105           <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
    106         </configuration>
    107         <reportSets>
    108           <reportSet>
    109             <reports>
    110               <report>changes-report</report>
    111             </reports>
    112           </reportSet>
    113         </reportSets>
    114       </plugin>
    115     </plugins>
    116   </reporting>
    117 </project>
    118