2006-03-10 10:34:04 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2008-11-01 08:47:05 -04:00
|
|
|
|
2009-06-16 15:18:18 -04:00
|
|
|
<!--
|
2011-10-27 18:23:24 -04:00
|
|
|
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.
|
2009-06-16 15:18:18 -04:00
|
|
|
-->
|
2008-10-30 17:46:48 -04:00
|
|
|
|
2009-11-09 10:24:06 -05:00
|
|
|
<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">
|
2008-10-30 17:46:48 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2006-03-10 10:34:04 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2006-03-10 19:17:59 -05:00
|
|
|
<artifactId>maven-parent</artifactId>
|
2014-04-12 11:30:12 -04:00
|
|
|
<version>24</version>
|
2006-03-10 10:34:04 -05:00
|
|
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
2008-11-01 08:47:05 -04:00
|
|
|
</parent>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2005-04-05 12:27:27 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2014-08-11 16:55:03 -04:00
|
|
|
<version>3.2.4-SNAPSHOT</version>
|
2005-03-16 01:55:21 -05:00
|
|
|
<packaging>pom</packaging>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2010-10-04 08:34:38 -04:00
|
|
|
<name>Apache Maven</name>
|
2013-02-02 09:21:09 -05:00
|
|
|
<description>Maven is a software build management and
|
2008-07-06 12:08:04 -04:00
|
|
|
comprehension tool. Based on the concept of a project object model:
|
|
|
|
builds, dependency management, documentation creation, site
|
|
|
|
publication, and distribution publication are all controlled from
|
|
|
|
the declarative file. Maven can be extended by plugins to utilise a
|
|
|
|
number of other development tools for reporting or the build
|
2008-07-24 19:06:59 -04:00
|
|
|
process.
|
|
|
|
</description>
|
2012-12-15 04:48:38 -05:00
|
|
|
<url>http://maven.apache.org/ref/${project.version}</url>
|
2006-01-31 21:39:10 -05:00
|
|
|
<inceptionYear>2001</inceptionYear>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
2008-12-14 14:51:59 -05:00
|
|
|
<properties>
|
2014-04-12 11:30:12 -04:00
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
2013-08-16 00:23:29 -04:00
|
|
|
<classWorldsVersion>2.5.1</classWorldsVersion>
|
2009-07-19 14:39:46 -04:00
|
|
|
<commonsCliVersion>1.2</commonsCliVersion>
|
2008-12-14 14:51:59 -05:00
|
|
|
<easyMockVersion>1.2_Java1.3</easyMockVersion>
|
2009-06-02 16:18:20 -04:00
|
|
|
<junitVersion>3.8.2</junitVersion>
|
2010-10-01 04:42:37 -04:00
|
|
|
<plexusVersion>1.5.5</plexusVersion>
|
2013-08-07 01:45:12 -04:00
|
|
|
<plexusInterpolationVersion>1.19</plexusInterpolationVersion>
|
2014-01-27 15:49:39 -05:00
|
|
|
<plexusUtilsVersion>3.0.17</plexusUtilsVersion>
|
2013-12-24 12:52:20 -05:00
|
|
|
<!-- Latest version of Guava that works with Sisu -->
|
|
|
|
<guavaVersion>14.0.1</guavaVersion>
|
2013-03-12 21:11:34 -04:00
|
|
|
<guiceVersion>3.1.3</guiceVersion>
|
2013-07-26 20:59:54 -04:00
|
|
|
<sisuInjectVersion>0.0.0.M5</sisuInjectVersion>
|
2014-01-09 23:32:48 -05:00
|
|
|
<wagonVersion>2.6</wagonVersion>
|
2009-08-12 09:51:07 -04:00
|
|
|
<securityDispatcherVersion>1.3</securityDispatcherVersion>
|
2011-07-27 06:33:11 -04:00
|
|
|
<cipherVersion>1.7</cipherVersion>
|
2013-08-16 00:24:52 -04:00
|
|
|
<modelloVersion>1.8.1</modelloVersion>
|
2009-02-03 14:50:11 -05:00
|
|
|
<jxpathVersion>1.3</jxpathVersion>
|
2013-03-14 16:03:31 -04:00
|
|
|
<aetherVersion>0.9.0.M2</aetherVersion>
|
2013-08-01 14:02:34 -04:00
|
|
|
<slf4jVersion>1.7.5</slf4jVersion>
|
2009-06-13 07:29:02 -04:00
|
|
|
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
2011-10-27 18:23:24 -04:00
|
|
|
<!-- Control the name of the distribution and information output by mvn -->
|
2011-07-28 12:46:23 -04:00
|
|
|
<distributionId>apache-maven</distributionId>
|
|
|
|
<distributionShortName>Maven</distributionShortName>
|
|
|
|
<distributionName>Apache Maven</distributionName>
|
2013-02-06 18:02:31 -05:00
|
|
|
<maven.site.path>ref/3-LATEST</maven.site.path>
|
2009-02-17 16:46:38 -05:00
|
|
|
</properties>
|
2010-05-30 13:52:23 -04:00
|
|
|
|
2005-09-15 09:37:47 -04:00
|
|
|
<modules>
|
2011-09-04 04:53:44 -04:00
|
|
|
<module>maven-plugin-api</module>
|
2005-09-15 09:37:47 -04:00
|
|
|
<module>maven-model</module>
|
2011-09-04 04:53:44 -04:00
|
|
|
<module>maven-model-builder</module>
|
|
|
|
<module>maven-core</module>
|
2009-10-22 13:59:26 -04:00
|
|
|
<module>maven-settings</module>
|
2010-07-16 05:59:13 -04:00
|
|
|
<module>maven-settings-builder</module>
|
2009-10-22 13:34:20 -04:00
|
|
|
<module>maven-artifact</module>
|
2010-08-24 18:46:07 -04:00
|
|
|
<module>maven-aether-provider</module>
|
2010-06-02 09:56:15 -04:00
|
|
|
<module>maven-repository-metadata</module>
|
2006-04-07 11:57:09 -04:00
|
|
|
<module>maven-embedder</module>
|
2008-12-03 18:06:43 -05:00
|
|
|
<module>maven-compat</module>
|
2011-09-04 04:53:44 -04:00
|
|
|
<module>apache-maven</module>
|
2005-09-15 09:37:47 -04:00
|
|
|
</modules>
|
2009-04-22 19:04:06 -04:00
|
|
|
|
|
|
|
<scm>
|
2012-12-01 06:24:39 -05:00
|
|
|
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</connection>
|
|
|
|
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</developerConnection>
|
2013-09-14 05:50:00 -04:00
|
|
|
<url>https://github.com/apache/maven/tree/${project.scm.tag}</url>
|
2014-08-11 16:55:03 -04:00
|
|
|
<tag>master</tag>
|
2009-04-22 19:04:06 -04:00
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>jira</system>
|
|
|
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
|
|
|
</issueManagement>
|
2011-05-16 15:07:02 -04:00
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
2013-02-06 16:19:56 -05:00
|
|
|
<url>https://builds.apache.org/job/maven-3.x/</url>
|
2011-05-16 15:07:02 -04:00
|
|
|
</ciManagement>
|
2009-04-22 19:04:06 -04:00
|
|
|
<distributionManagement>
|
2013-05-29 14:47:26 -04:00
|
|
|
<downloadUrl>http://maven.apache.org/download.html</downloadUrl>
|
2009-04-22 19:04:06 -04:00
|
|
|
<site>
|
|
|
|
<id>apache.website</id>
|
2013-02-06 18:02:31 -05:00
|
|
|
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
|
2009-04-22 19:04:06 -04:00
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
2014-06-15 09:23:43 -04:00
|
|
|
|
2013-03-05 16:10:23 -05:00
|
|
|
<contributors>
|
|
|
|
<contributor>
|
|
|
|
<name>Stuart McCulloch</name>
|
|
|
|
</contributor>
|
2014-06-10 13:04:52 -04:00
|
|
|
<contributor>
|
2014-06-15 09:23:43 -04:00
|
|
|
<name>Christian Schulte (MNG-2199)</name>
|
2014-06-10 13:04:52 -04:00
|
|
|
</contributor>
|
|
|
|
<contributor>
|
|
|
|
<name>Christopher Tubbs (MNG-4226)</name>
|
|
|
|
</contributor>
|
2014-06-15 09:23:43 -04:00
|
|
|
<contributor>
|
|
|
|
<name>Konstantin Perikov (MNG-4565)</name>
|
|
|
|
</contributor>
|
2014-06-10 13:04:52 -04:00
|
|
|
<contributor>
|
|
|
|
<name>Sébastian Le Merdy (MNG-5613)</name>
|
|
|
|
</contributor>
|
2014-06-11 08:44:42 -04:00
|
|
|
<contributor>
|
2014-06-15 09:23:43 -04:00
|
|
|
<name>Mark Ingram (MNG-5639)</name>
|
2014-06-11 08:44:42 -04:00
|
|
|
</contributor>
|
2014-06-11 20:38:14 -04:00
|
|
|
<contributor>
|
2014-06-15 09:23:43 -04:00
|
|
|
<name>Phil Pratt-Szeliga (MNG-5645)</name>
|
2014-06-11 20:38:14 -04:00
|
|
|
</contributor>
|
2013-03-05 16:10:23 -05:00
|
|
|
</contributors>
|
|
|
|
|
2014-01-06 04:58:51 -05:00
|
|
|
<prerequisites>
|
|
|
|
<maven>2.2.1</maven>
|
|
|
|
</prerequisites>
|
|
|
|
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-start-comment-->
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependencyManagement>
|
2009-06-16 15:18:18 -04:00
|
|
|
<!--bootstrap-end-comment-->
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependencies>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!-- Maven Modules -->
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-start-comment-->
|
2008-05-05 09:46:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
2009-10-22 13:59:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2010-07-16 05:59:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings-builder</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2008-05-05 09:46:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
2008-07-06 12:08:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-embedder</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2008-11-20 23:49:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>maven-model-builder</artifactId>
|
2008-11-20 23:49:46 -05:00
|
|
|
<version>${project.version}</version>
|
2009-02-26 00:04:07 -05:00
|
|
|
</dependency>
|
2008-09-28 12:21:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-compat</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-10-22 13:34:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-06-02 09:56:15 -04:00
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-aether-provider</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2010-06-02 09:56:15 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2009-10-22 13:34:20 -04:00
|
|
|
</dependency>
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-end-comment-->
|
2008-07-06 12:08:04 -04:00
|
|
|
<!-- Plexus -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
<version>${plexusUtilsVersion}</version>
|
|
|
|
</dependency>
|
2013-03-12 21:11:34 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guavaVersion}</version>
|
|
|
|
</dependency>
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependency>
|
2010-09-15 15:23:59 -04:00
|
|
|
<groupId>org.sonatype.sisu</groupId>
|
2013-03-12 21:11:34 -04:00
|
|
|
<artifactId>sisu-guice</artifactId>
|
|
|
|
<version>${guiceVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.sisu</groupId>
|
|
|
|
<artifactId>sisu-guice</artifactId>
|
|
|
|
<version>${guiceVersion}</version>
|
|
|
|
<classifier>no_aop</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
2010-09-15 15:23:59 -04:00
|
|
|
<version>${sisuInjectVersion}</version>
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependency>
|
2008-10-01 09:08:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-annotations</artifactId>
|
|
|
|
<version>${plexusVersion}</version>
|
2009-11-13 17:03:23 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-11-01 08:47:05 -04:00
|
|
|
</dependency>
|
2006-12-06 19:17:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-classworlds</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${classWorldsVersion}</version>
|
2006-12-30 09:54:59 -05:00
|
|
|
</dependency>
|
2008-04-03 11:13:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${plexusInterpolationVersion}</version>
|
2008-04-03 11:13:24 -04:00
|
|
|
</dependency>
|
2012-09-02 21:07:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4jVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2012-10-10 18:48:08 -04:00
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2012-09-02 21:07:31 -04:00
|
|
|
<version>${slf4jVersion}</version>
|
2013-01-06 05:50:25 -05:00
|
|
|
<optional>true</optional>
|
2012-10-10 18:48:08 -04:00
|
|
|
</dependency>
|
2012-12-20 02:58:13 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.7</version>
|
2013-01-06 05:50:25 -05:00
|
|
|
<optional>true</optional>
|
2012-12-20 02:58:13 -05:00
|
|
|
</dependency>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!-- Wagon -->
|
2005-10-12 10:28:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2007-03-10 00:38:50 -05:00
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
<version>${wagonVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
2007-02-09 17:01:38 -05:00
|
|
|
<version>${wagonVersion}</version>
|
2005-10-12 10:28:09 -04:00
|
|
|
</dependency>
|
2007-03-10 19:48:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2011-09-19 04:37:25 -04:00
|
|
|
<artifactId>wagon-http</artifactId>
|
2007-03-10 19:48:53 -05:00
|
|
|
<version>${wagonVersion}</version>
|
2011-09-19 04:37:25 -04:00
|
|
|
<classifier>shaded</classifier>
|
2010-11-22 08:13:51 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-03-10 19:48:53 -05:00
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
<!-- Repository -->
|
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-api</artifactId>
|
|
|
|
<version>${aetherVersion}</version>
|
|
|
|
</dependency>
|
2010-11-02 10:28:14 -04:00
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-11-02 10:28:14 -04:00
|
|
|
<artifactId>aether-spi</artifactId>
|
|
|
|
<version>${aetherVersion}</version>
|
|
|
|
</dependency>
|
2010-08-24 18:46:07 -04:00
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-impl</artifactId>
|
|
|
|
<version>${aetherVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-util</artifactId>
|
|
|
|
<version>${aetherVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 15:43:28 -05:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 18:46:07 -04:00
|
|
|
<artifactId>aether-connector-wagon</artifactId>
|
|
|
|
<version>${aetherVersion}</version>
|
|
|
|
</dependency>
|
2008-12-03 18:06:43 -05:00
|
|
|
<!-- Commons -->
|
2008-04-15 11:41:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${commonsCliVersion}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-lang</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>commons-lang</artifactId>
|
2008-05-05 09:46:40 -04:00
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-05-05 09:46:40 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-11-25 02:11:35 -05:00
|
|
|
</dependency>
|
2009-04-22 19:04:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-jxpath</groupId>
|
|
|
|
<artifactId>commons-jxpath</artifactId>
|
2009-02-04 12:07:25 -05:00
|
|
|
<version>${jxpathVersion}</version>
|
2009-04-22 19:04:06 -04:00
|
|
|
</dependency>
|
2009-02-12 17:24:36 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.plexus</groupId>
|
|
|
|
<artifactId>plexus-sec-dispatcher</artifactId>
|
|
|
|
<version>${securityDispatcherVersion}</version>
|
|
|
|
</dependency>
|
2009-10-26 16:16:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.plexus</groupId>
|
|
|
|
<artifactId>plexus-cipher</artifactId>
|
|
|
|
<version>${cipherVersion}</version>
|
|
|
|
</dependency>
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-start-comment-->
|
2008-12-03 18:06:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<version>${easyMockVersion}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-end-comment-->
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependencies>
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-start-comment-->
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependencyManagement>
|
2009-04-22 19:04:06 -04:00
|
|
|
<!--bootstrap-end-comment-->
|
|
|
|
<!--bootstrap-start-comment-->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junitVersion}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!--bootstrap-end-comment-->
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
|
|
|
<version>${plexusVersion}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-metadata</goal>
|
|
|
|
<goal>generate-test-metadata</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-05-22 10:25:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-04-22 19:04:06 -04:00
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<configuration>
|
2010-03-15 13:24:12 -04:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2009-04-22 19:04:06 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-09-26 11:19:11 -04:00
|
|
|
<plugin>
|
2011-05-22 10:25:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-09-26 11:19:11 -04:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>-Xmx256m</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-04-22 19:04:06 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<version>${modelloVersion}</version>
|
|
|
|
<executions>
|
2010-03-13 08:56:11 -05:00
|
|
|
<execution>
|
|
|
|
<id>site-docs</id>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>xdoc</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2009-04-22 19:04:06 -04:00
|
|
|
<execution>
|
|
|
|
<id>standard</id>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</plugin>
|
2011-09-08 07:46:46 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
2012-12-05 08:21:04 -05:00
|
|
|
<version>1.2</version>
|
2011-09-08 07:46:46 -04:00
|
|
|
</plugin>
|
2012-11-10 23:22:44 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
2013-05-13 13:54:24 -04:00
|
|
|
<configuration>
|
|
|
|
<topSiteURL>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</topSiteURL>
|
|
|
|
</configuration>
|
2013-11-18 17:10:42 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.doxia</groupId>
|
|
|
|
<artifactId>doxia-module-markdown</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-11-10 23:22:44 -05:00
|
|
|
</plugin>
|
2014-06-15 11:05:56 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</plugin>
|
2013-05-28 05:37:02 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/resources*/**</exclude>
|
|
|
|
<exclude>src/test/projects/**</exclude>
|
|
|
|
<exclude>src/test/remote-repo/**</exclude>
|
2014-02-10 19:36:48 -05:00
|
|
|
<exclude>**/*.odg</exclude>
|
2013-05-28 05:37:02 -04:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
2014-02-15 13:14:16 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check</id>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2014-04-12 11:30:12 -04:00
|
|
|
</executions>
|
2013-05-28 05:37:02 -04:00
|
|
|
</plugin>
|
2014-02-17 15:07:38 -05:00
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<versionRange>[0.10,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
2014-06-17 09:36:00 -04:00
|
|
|
<ignore />
|
2014-02-17 15:07:38 -05:00
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-04-22 19:04:06 -04:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2010-08-28 11:22:09 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
2014-02-18 11:27:29 -05:00
|
|
|
<version>1.10</version>
|
2010-08-28 11:22:09 -04:00
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
2014-01-06 04:55:21 -05:00
|
|
|
<artifactId>java16</artifactId>
|
|
|
|
<version>1.1</version>
|
2010-08-28 11:22:09 -04:00
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2014-01-06 04:55:21 -05:00
|
|
|
<id>check-java-1.6-compat</id>
|
2010-08-28 11:22:09 -04:00
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-04-12 11:30:12 -04:00
|
|
|
<plugin><!-- TODO remove when upgrading to maven-parent 25 -->
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-bytecode-version</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<enforceBytecodeVersion>
|
|
|
|
<maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
|
|
|
|
</enforceBytecodeVersion>
|
|
|
|
</rules>
|
|
|
|
<fail>true</fail>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-05-29 14:47:26 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-doap-plugin</artifactId>
|
2014-04-12 11:30:12 -04:00
|
|
|
<version>1.1</version>
|
2013-05-29 14:47:26 -04:00
|
|
|
<configuration>
|
|
|
|
<asfExtOptions>
|
|
|
|
<charter>The mission of the Apache Maven project is to create and maintain software
|
|
|
|
libraries that provide a widely-used project build tool, targeting mainly Java
|
|
|
|
development. Apache Maven promotes the use of dependencies via a
|
|
|
|
standardized coordinate system, binary plugins, and a standard build
|
|
|
|
lifecycle.</charter>
|
|
|
|
</asfExtOptions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-05-28 05:37:02 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
2014-04-12 11:30:12 -04:00
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
2013-05-28 05:37:02 -04:00
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
|
|
|
<exclude>bootstrap/**</exclude>
|
|
|
|
<exclude>README.bootstrap.txt</exclude>
|
2014-02-18 07:46:35 -05:00
|
|
|
<exclude>.repository/**</exclude> <!-- jenkins with local maven repository -->
|
2014-07-11 02:24:51 -04:00
|
|
|
<exclude>.maven/spy.log</exclude> <!-- hudson maven3 integration log -->
|
2013-05-28 05:37:02 -04:00
|
|
|
</excludes>
|
2013-07-08 05:35:59 -04:00
|
|
|
<!-- maven-parent:24 sets ignore errors, but core is ahead -->
|
|
|
|
<ignoreErrors>false</ignoreErrors>
|
2013-05-28 05:37:02 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-08-28 11:22:09 -04:00
|
|
|
</plugins>
|
2009-04-22 19:04:06 -04:00
|
|
|
</build>
|
|
|
|
|
2007-06-14 23:10:55 -04:00
|
|
|
<profiles>
|
2009-11-13 12:43:08 -05:00
|
|
|
<profile>
|
|
|
|
<id>apache-release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>source-release-assembly</id>
|
|
|
|
<configuration>
|
|
|
|
<!-- we have a dedicated distribution module -->
|
|
|
|
<skipAssembly>true</skipAssembly>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>reporting</id>
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2011-05-22 10:25:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-11-13 12:43:08 -05:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2011-06-13 18:34:07 -04:00
|
|
|
<configuration>
|
|
|
|
<linksource>true</linksource>
|
2012-12-16 15:21:58 -05:00
|
|
|
<notimestamp>true</notimestamp>
|
2014-05-24 16:41:25 -04:00
|
|
|
<quiet>true</quiet>
|
2011-06-26 13:24:06 -04:00
|
|
|
<links combine.children="append">
|
2013-06-29 20:32:59 -04:00
|
|
|
<link>http://download.eclipse.org/aether/aether-core/${aetherVersion}/apidocs/</link>
|
2012-11-19 14:50:04 -05:00
|
|
|
<link>http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/</link>
|
2011-06-26 13:24:06 -04:00
|
|
|
</links>
|
2011-06-13 18:34:07 -04:00
|
|
|
</configuration>
|
2011-06-13 18:25:46 -04:00
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>aggregate</id>
|
2011-09-04 04:35:22 -04:00
|
|
|
<inherited>false</inherited>
|
2011-06-13 18:25:46 -04:00
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2009-11-13 12:43:08 -05:00
|
|
|
</plugin>
|
2011-07-20 16:36:09 -04:00
|
|
|
<plugin>
|
2011-07-16 05:12:26 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>aggregate</id>
|
2011-09-04 04:35:22 -04:00
|
|
|
<inherited>false</inherited>
|
2011-07-16 05:12:26 -04:00
|
|
|
<reports>
|
|
|
|
<report>aggregate</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2011-07-20 16:36:09 -04:00
|
|
|
</plugin>
|
2009-11-13 12:43:08 -05:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
</profile>
|
2009-07-12 07:27:13 -04:00
|
|
|
<profile>
|
|
|
|
<id>maven-repo-local</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>maven.repo.local</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2011-05-22 10:25:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2009-07-12 07:27:13 -04:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties combine.children="append">
|
|
|
|
<property>
|
|
|
|
<!-- Pass this through to the tests (if set!) to have them pick the right repository -->
|
|
|
|
<name>maven.repo.local</name>
|
|
|
|
<value>${maven.repo.local}</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2007-06-14 23:10:55 -04:00
|
|
|
</profiles>
|
2008-11-11 21:10:33 -05:00
|
|
|
</project>
|