mirror of https://github.com/apache/maven.git
added a unit test for un-substituted variable
Issue id: MNG-3856 git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@732103 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb1c3cc39a
commit
bea79ffe1d
|
@ -0,0 +1,542 @@
|
||||||
|
<?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.maven</groupId>
|
||||||
|
<artifactId>maven-parent</artifactId>
|
||||||
|
<version>9</version>
|
||||||
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven</artifactId>
|
||||||
|
<version>3.0-SNAPSHOT</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Apache Maven</name>
|
||||||
|
<description>Maven is a project development management and
|
||||||
|
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
|
||||||
|
process.
|
||||||
|
</description>
|
||||||
|
<url>http://maven.apache.org/</url>
|
||||||
|
<inceptionYear>2001</inceptionYear>
|
||||||
|
<properties>
|
||||||
|
<classWorldsVersion>1.3</classWorldsVersion>
|
||||||
|
<commonsCliVersion>1.0</commonsCliVersion>
|
||||||
|
<doxiaVersion>1.0-alpha-9</doxiaVersion>
|
||||||
|
<easyMockVersion>1.2_Java1.3</easyMockVersion>
|
||||||
|
<junitVersion>3.8.1</junitVersion>
|
||||||
|
<plexusVersion>1.0-beta-3.0.1</plexusVersion>
|
||||||
|
<plexusInteractivityVersion>1.0-alpha-6</plexusInteractivityVersion>
|
||||||
|
<plexusInterpolationVersion>1.1</plexusInterpolationVersion>
|
||||||
|
<plexusPluginManagerVersion>1.0-alpha-1</plexusPluginManagerVersion>
|
||||||
|
<plexusUtilsVersion>1.5.5</plexusUtilsVersion>
|
||||||
|
<wagonVersion>1.0-beta-4</wagonVersion>
|
||||||
|
<modelBuilderVersion>1.0</modelBuilderVersion>
|
||||||
|
<mercuryVersion>1.0.0-alpha-2</mercuryVersion>
|
||||||
|
<woodstoxVersion>3.2.6</woodstoxVersion>
|
||||||
|
<modelloVersion>1.0-alpha-22</modelloVersion>
|
||||||
|
</properties>
|
||||||
|
<issueManagement>
|
||||||
|
<system>jira</system>
|
||||||
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
||||||
|
</issueManagement>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Developer List</name>
|
||||||
|
<subscribe>dev-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<post>dev@maven.apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.dev.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven User List</name>
|
||||||
|
<subscribe>users-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<post>users@maven.apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.users.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Issues List</name>
|
||||||
|
<subscribe>issues-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>issues-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven---Issues-f15573.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.issues.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Commits List</name>
|
||||||
|
<subscribe>commits-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-commits</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/commits@maven.apache.org</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven---Commits-f15575.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.commits.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<!--
|
||||||
|
duplication from parent pom - temporary until they inherit
|
||||||
|
properly
|
||||||
|
-->
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Announcements List</name>
|
||||||
|
<post>announce@maven.apache.org</post>
|
||||||
|
<subscribe>announce-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/announce@maven.apache.org</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven-Announcements-f15617.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.announce.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Notifications List</name>
|
||||||
|
<subscribe>notifications-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>notifications-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/notifications@maven.apache.org</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven---Notifications-f15574.html</otherArchive>
|
||||||
|
<otherArchive>http://maven.notifications.markmail.org/</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/trunk</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/trunk</developerConnection>
|
||||||
|
<url>http://svn.apache.org/viewcvs.cgi/maven/components/trunk</url>
|
||||||
|
</scm>
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-component-metadata</artifactId>
|
||||||
|
<version>${plexusVersion}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>generate-metadata</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
</plugin>
|
||||||
|
<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>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<tagBase>https://svn.apache.org/repos/asf/maven/components/tags</tagBase>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.modello</groupId>
|
||||||
|
<artifactId>modello-maven-plugin</artifactId>
|
||||||
|
<version>${modelloVersion}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>site-docs</id>
|
||||||
|
<phase>pre-site</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>xdoc</goal>
|
||||||
|
<goal>xsd</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<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>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>clirr-maven-plugin</artifactId>
|
||||||
|
<version>2.2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<!-- needed for release: default value "(,${project.version})" for 2.0.10 is 2.0.10-SNAPSHOT -->
|
||||||
|
<comparisonVersion>2.0.9</comparisonVersion>
|
||||||
|
<excludes>
|
||||||
|
<!-- TODO: These represent method ADDITIONS from 2.0.9, and should be removed after
|
||||||
|
2.0.10 is released. -->
|
||||||
|
<exclude>org/apache/maven/lifecycle/LifecycleExecutor*</exclude>
|
||||||
|
<exclude>org/apache/maven/artifact/metadata/ArtifactMetadataSource*</exclude>
|
||||||
|
<exclude>org/apache/maven/project/MavenProjectBuilder*</exclude>
|
||||||
|
<exclude>org/apache/maven/project/ProjectBuilderConfiguration*</exclude>
|
||||||
|
<exclude>org/apache/maven/project/interpolation/ModelInterpolator*</exclude>
|
||||||
|
<exclude>org/apache/maven/project/inheritance/ModelInheritanceAssembler*</exclude>
|
||||||
|
<exclude>org/apache/maven/execution/MavenExecutionRequest*</exclude>
|
||||||
|
<exclude>org/apache/maven/plugin/DefaultPluginManager*</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.4.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>2.2-beta-2</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
<modules>
|
||||||
|
<module>maven-core</module>
|
||||||
|
<module>maven-distribution</module>
|
||||||
|
<module>maven-lifecycle</module>
|
||||||
|
<module>maven-model</module>
|
||||||
|
<module>maven-plugin-api</module>
|
||||||
|
<module>maven-project</module>
|
||||||
|
<module>maven-reporting-api</module>
|
||||||
|
<module>maven-project-builder</module>
|
||||||
|
<module>maven-mercury</module>
|
||||||
|
<module>maven-embedder</module>
|
||||||
|
<module>maven-toolchain</module>
|
||||||
|
<module>maven-compat</module>
|
||||||
|
</modules>
|
||||||
|
<!--
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>${junitVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<dependencyManagement>
|
||||||
|
-->
|
||||||
|
<dependencies>
|
||||||
|
<!-- Maven Modules -->
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-lifecycle</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-reporting-api</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-profile</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-model</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-project</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-plugin-api</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-toolchain</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<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>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-project-builder</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-compat</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
<!-- Plexus -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-utils</artifactId>
|
||||||
|
<version>${plexusUtilsVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-container-default</artifactId>
|
||||||
|
<version>${plexusVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-component-annotations</artifactId>
|
||||||
|
<version>${plexusVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-classworlds</artifactId>
|
||||||
|
<version>${classWorldsVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-interpolation</artifactId>
|
||||||
|
<version>${plexusInterpolationVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-interactivity-api</artifactId>
|
||||||
|
<version>${plexusInteractivityVersion}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-component-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<!-- Wagon -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-provider-api</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-file</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-http-lightweight</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-ssh</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-ssh-external</artifactId>
|
||||||
|
<version>${wagonVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Doxia -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.doxia</groupId>
|
||||||
|
<artifactId>doxia-sink-api</artifactId>
|
||||||
|
<version>${doxiaVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Maven Shared -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.sonatype.spice</groupId>
|
||||||
|
<artifactId>model-builder</artifactId>
|
||||||
|
<version>${modelBuilderVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.woodstox</groupId>
|
||||||
|
<artifactId>wstx-asl</artifactId>
|
||||||
|
<version>${woodstoxVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Commons -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-cli</groupId>
|
||||||
|
<artifactId>commons-cli</artifactId>
|
||||||
|
<version>${commonsCliVersion}</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>commons-lang</artifactId>
|
||||||
|
<groupId>commons-lang</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>commons-logging</artifactId>
|
||||||
|
<groupId>commons-logging</groupId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<!-- Mercury -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-artifact</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-external</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.sonatype.plexus</groupId>
|
||||||
|
<artifactId>plexus-plugin-manager</artifactId>
|
||||||
|
<version>${plexusPluginManagerVersion}</version>
|
||||||
|
</dependency>
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>easymock</groupId>
|
||||||
|
<artifactId>easymock</artifactId>
|
||||||
|
<version>${easyMockVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
</dependencies>
|
||||||
|
<!--
|
||||||
|
</dependencyManagement>
|
||||||
|
-->
|
||||||
|
<distributionManagement>
|
||||||
|
<site>
|
||||||
|
<id>apache.website</id>
|
||||||
|
<url>scp://people.apache.org/www/maven.apache.org/ref/${project.version}/</url>
|
||||||
|
</site>
|
||||||
|
</distributionManagement>
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>osgi</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>manifest</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<!-- Needed for including the manifest, see MJAR-71 -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<inherited>false</inherited>
|
||||||
|
<configuration>
|
||||||
|
<descriptors>
|
||||||
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
||||||
|
</descriptors>
|
||||||
|
<tarLongFileMode>gnu</tarLongFileMode>
|
||||||
|
<finalName>maven-${project.version}-src</finalName>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>make-assembly</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>strict</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>1.0-alpha-3</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-jdk-15</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireJavaVersion>
|
||||||
|
<version>1.5</version>
|
||||||
|
</requireJavaVersion>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
|
@ -21,28 +21,72 @@
|
||||||
<name>Maven Mercury</name>
|
<name>Maven Mercury</name>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.mercury</groupId>
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
<artifactId>mercury-artifact</artifactId>
|
<artifactId>mercury-artifact</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.mercury</groupId>
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
<artifactId>mercury-external</artifactId>
|
<artifactId>mercury-external</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven</groupId>
|
<groupId>org.apache.maven</groupId>
|
||||||
<artifactId>maven-project-builder</artifactId>
|
<artifactId>maven-project-builder</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.codehaus.plexus</groupId>
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
<artifactId>plexus-component-annotations</artifactId>
|
<artifactId>plexus-component-annotations</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- test dependencies -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-util</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-repo-local-m2</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-repo-remote-m2</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-md-sat</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-transport-http</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-transport-http</artifactId>
|
||||||
|
<type>test-jar</type>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>4.4</version>
|
<version>4.4</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -0,0 +1,140 @@
|
||||||
|
package org.apache.maven.mercury;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.maven.mercury.artifact.ArtifactBasicMetadata;
|
||||||
|
import org.apache.maven.mercury.artifact.ArtifactMetadata;
|
||||||
|
import org.apache.maven.mercury.artifact.ArtifactScopeEnum;
|
||||||
|
import org.apache.maven.mercury.metadata.DependencyBuilder;
|
||||||
|
import org.apache.maven.mercury.metadata.DependencyBuilderFactory;
|
||||||
|
import org.apache.maven.mercury.metadata.MetadataTreeNode;
|
||||||
|
import org.apache.maven.mercury.repository.api.ArtifactBasicResults;
|
||||||
|
import org.apache.maven.mercury.repository.api.Repository;
|
||||||
|
import org.apache.maven.mercury.repository.api.RepositoryReader;
|
||||||
|
import org.apache.maven.mercury.repository.local.m2.LocalRepositoryM2;
|
||||||
|
import org.apache.maven.mercury.repository.remote.m2.RemoteRepositoryM2;
|
||||||
|
import org.apache.maven.mercury.spi.http.server.HttpTestServer;
|
||||||
|
import org.apache.maven.mercury.transport.api.Server;
|
||||||
|
import org.apache.maven.mercury.util.FileUtil;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Oleg Gusakov
|
||||||
|
* @version $Id$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class MavenDependencyProcessorTest
|
||||||
|
{
|
||||||
|
LocalRepositoryM2 _localRepo;
|
||||||
|
|
||||||
|
RemoteRepositoryM2 _remoteRepo;
|
||||||
|
|
||||||
|
File _localRepoFile;
|
||||||
|
|
||||||
|
static final String _remoteRepoDir = "./target/test-classes/repo";
|
||||||
|
|
||||||
|
File _remoteRepoFile;
|
||||||
|
|
||||||
|
static final String _remoteRepoUrlPrefix = "http://localhost:";
|
||||||
|
|
||||||
|
static final String _remoteRepoUrlSufix = "/maven2";
|
||||||
|
|
||||||
|
HttpTestServer _jetty;
|
||||||
|
|
||||||
|
int _port;
|
||||||
|
|
||||||
|
DependencyBuilder _depBuilder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws java.lang.Exception
|
||||||
|
*/
|
||||||
|
@Before
|
||||||
|
public void setUp()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
MavenDependencyProcessor dp = new MavenDependencyProcessor();
|
||||||
|
|
||||||
|
_localRepoFile = File.createTempFile( "maven-mercury-", "-test-repo" );
|
||||||
|
FileUtil.delete( _localRepoFile );
|
||||||
|
_localRepoFile.mkdirs();
|
||||||
|
_localRepoFile.deleteOnExit();
|
||||||
|
_localRepo = new LocalRepositoryM2( "localRepo", _localRepoFile, dp );
|
||||||
|
|
||||||
|
_remoteRepoFile = new File( _remoteRepoDir );
|
||||||
|
_jetty = new HttpTestServer( _remoteRepoFile, _remoteRepoUrlSufix );
|
||||||
|
_jetty.start();
|
||||||
|
_port = _jetty.getPort();
|
||||||
|
|
||||||
|
Server server = new Server( "testRemote", new URL(_remoteRepoUrlPrefix + _port + _remoteRepoUrlSufix) );
|
||||||
|
_remoteRepo = new RemoteRepositoryM2( server, dp );
|
||||||
|
|
||||||
|
ArrayList<Repository> repos = new ArrayList<Repository>(2);
|
||||||
|
|
||||||
|
repos.add( _localRepo );
|
||||||
|
repos.add( _remoteRepo );
|
||||||
|
|
||||||
|
_depBuilder = DependencyBuilderFactory.create( DependencyBuilderFactory.JAVA_DEPENDENCY_MODEL, repos, null, null, null );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws java.lang.Exception
|
||||||
|
*/
|
||||||
|
@After
|
||||||
|
public void tearDown()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
if( _jetty != null )
|
||||||
|
{
|
||||||
|
_jetty.stop();
|
||||||
|
_jetty.destroy();
|
||||||
|
|
||||||
|
System.out.println( "Jetty on :" + _port + " destroyed\n<========\n\n" );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test method for {@link org.apache.maven.mercury.MavenDependencyProcessor#getDependencies(org.apache.maven.mercury.artifact.ArtifactBasicMetadata, org.apache.maven.mercury.builder.api.MetadataReader, java.util.Map, java.util.Map)}.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testMavenVersion()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
RepositoryReader rr = _remoteRepo.getReader();
|
||||||
|
|
||||||
|
String gav = "org.apache.maven.plugins:maven-dependency-plugin:2.0";
|
||||||
|
|
||||||
|
ArtifactBasicMetadata bmd = new ArtifactBasicMetadata( gav );
|
||||||
|
ArrayList<ArtifactBasicMetadata> query = new ArrayList<ArtifactBasicMetadata>(1);
|
||||||
|
query.add( bmd );
|
||||||
|
|
||||||
|
ArtifactBasicResults res = rr.readDependencies( query );
|
||||||
|
|
||||||
|
assertNotNull( res );
|
||||||
|
|
||||||
|
assertFalse( res.hasExceptions() );
|
||||||
|
|
||||||
|
assertTrue( res.hasResults() );
|
||||||
|
|
||||||
|
List<ArtifactBasicMetadata> deps = res.getResult( bmd );
|
||||||
|
|
||||||
|
assertNotNull( deps );
|
||||||
|
|
||||||
|
assertFalse( deps.isEmpty() );
|
||||||
|
|
||||||
|
System.out.println(deps);
|
||||||
|
|
||||||
|
for( ArtifactBasicMetadata md : deps )
|
||||||
|
if( "${maven.version}".equals( md.getVersion() ) )
|
||||||
|
fail( "dependency has unresolved variable: "+md.toString() );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,113 @@
|
||||||
|
<?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>
|
||||||
|
|
||||||
|
<!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does
|
||||||
|
define the settings common to all projects at Apache -->
|
||||||
|
<groupId>org.apache</groupId>
|
||||||
|
<artifactId>apache</artifactId>
|
||||||
|
<version>4</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>The Apache Software Foundation</name>
|
||||||
|
<description>
|
||||||
|
The Apache Software Foundation provides support for the Apache community of open-source software projects.
|
||||||
|
The Apache projects are characterized by a collaborative, consensus based development process, an open and
|
||||||
|
pragmatic software license, and a desire to create high quality software that leads the way in its field.
|
||||||
|
We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
|
||||||
|
and users.
|
||||||
|
</description>
|
||||||
|
<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>
|
||||||
|
<organization>
|
||||||
|
<name>The Apache Software Foundation</name>
|
||||||
|
<url>http://www.apache.org/</url>
|
||||||
|
</organization>
|
||||||
|
<url>http://www.apache.org/</url>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<name>Apache Snapshot Repository</name>
|
||||||
|
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<distributionManagement>
|
||||||
|
<!-- Site omitted - each project must provide their own -->
|
||||||
|
<repository>
|
||||||
|
<id>apache.releases</id>
|
||||||
|
<name>Apache Release Distribution Repository</name>
|
||||||
|
<url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<name>Apache Development Snapshot Repository</name>
|
||||||
|
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Apache Announce List</name>
|
||||||
|
<subscribe>announce-subscribe@apache.org</subscribe>
|
||||||
|
<unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
|
||||||
|
<post>announce@apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<properties>
|
||||||
|
<organization.logo>http://www.apache.org/images/asf_logo_wide.gif</organization.logo>
|
||||||
|
</properties>
|
||||||
|
<!--
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<artifacts>
|
||||||
|
<artifact>org.apache:apache-distribution-resources:1.0-SNAPSHOT</artifact>
|
||||||
|
</artifacts>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>process</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
-->
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4</developerConnection>
|
||||||
|
<url>http://svn.apache.org/viewvc/maven/pom/tags/apache-4</url>
|
||||||
|
</scm>
|
||||||
|
</project>
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?><metadata>
|
||||||
|
<groupId>org.apache</groupId>
|
||||||
|
<artifactId>apache</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<latest>4</latest>
|
||||||
|
<release>4</release>
|
||||||
|
<versions>
|
||||||
|
<version>4</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20080122220618</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
|
@ -0,0 +1,670 @@
|
||||||
|
<?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>
|
||||||
|
<relativePath>../asf/pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-parent</artifactId>
|
||||||
|
<version>7</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Apache Maven</name>
|
||||||
|
<description>Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.</description>
|
||||||
|
<url>http://maven.apache.org/</url>
|
||||||
|
<issueManagement>
|
||||||
|
<system>jira</system>
|
||||||
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
||||||
|
</issueManagement>
|
||||||
|
<ciManagement>
|
||||||
|
<system>continuum</system>
|
||||||
|
<url>http://maven.zones.apache.org/continuum</url>
|
||||||
|
<notifiers>
|
||||||
|
<notifier>
|
||||||
|
<type>mail</type>
|
||||||
|
<configuration>
|
||||||
|
<address>notifications@maven.apache.org</address>
|
||||||
|
</configuration>
|
||||||
|
</notifier>
|
||||||
|
</notifiers>
|
||||||
|
</ciManagement>
|
||||||
|
<inceptionYear>2002</inceptionYear>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Announcements List</name>
|
||||||
|
<post>announce@maven.apache.org</post>
|
||||||
|
<subscribe>announce-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Issues List</name>
|
||||||
|
<post>issues@maven.apache.org</post>
|
||||||
|
<subscribe>issues-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>issues-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Notifications List</name>
|
||||||
|
<post>notifications@maven.apache.org</post>
|
||||||
|
<subscribe>notifications-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>notifications-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<distributionManagement>
|
||||||
|
<site>
|
||||||
|
<id>apache.website</id>
|
||||||
|
<url>scp://people.apache.org/www/maven.apache.org</url>
|
||||||
|
</site>
|
||||||
|
</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>
|
||||||
|
<version>1.0-alpha-6</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>process</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<resourceBundles>
|
||||||
|
<resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
|
||||||
|
</resourceBundles>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<source>1.4</source>
|
||||||
|
<target>1.4</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<!-- START SNIPPET: release-plugin-configuration -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.0-beta-6</version>
|
||||||
|
<configuration>
|
||||||
|
<!-- This element will be overriden by children -->
|
||||||
|
<tagBase>https://svn.apache.org/repos/asf/maven/pom/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-jar-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</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>
|
||||||
|
</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>
|
||||||
|
</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>
|
||||||
|
<version>1.0-alpha-4</version>
|
||||||
|
<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>
|
||||||
|
<version>2.3</version>
|
||||||
|
<configuration>
|
||||||
|
<altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
|
||||||
|
<updateReleaseInfo>true</updateReleaseInfo>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>2.0.3</version>
|
||||||
|
<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>
|
||||||
|
<version>2.3</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<!-- END SNIPPET: release-profile -->
|
||||||
|
</profiles>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-7</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-7</developerConnection>
|
||||||
|
<url>http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-7</url>
|
||||||
|
</scm>
|
||||||
|
<!-- Developers listed by PMC Chair, PMC, Committers, Contributers, all alphabetical-->
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>jvanzyl</id>
|
||||||
|
<name>Jason van Zyl</name>
|
||||||
|
<email>jason@maven.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Chair</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-5</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>aheritier</id>
|
||||||
|
<name>Arnaud Heritier</name>
|
||||||
|
<email>aheritier@apache.org</email>
|
||||||
|
<organization>OCTO Technology</organization>
|
||||||
|
<organizationUrl>http://www.octo.com</organizationUrl>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</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>brianf</id>
|
||||||
|
<name>Brian Fox</name>
|
||||||
|
<email>brianf@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-5</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>dennisl</id>
|
||||||
|
<name>Dennis Lundberg</name>
|
||||||
|
<email>dennisl@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>evenisse</id>
|
||||||
|
<name>Emmanuel Venisse</name>
|
||||||
|
<email>evenisse@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>fgiust</id>
|
||||||
|
<name>Fabrizio Giustina</name>
|
||||||
|
<email>fgiust@apache.org</email>
|
||||||
|
<organization>openmind</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jdcasey</id>
|
||||||
|
<name>John Casey</name>
|
||||||
|
<email>jdcasey@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-5</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>jstrachan</id>
|
||||||
|
<name>James Strachan</name>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jtolentino</id>
|
||||||
|
<name>Ernesto Tolentino Jr.</name>
|
||||||
|
<email>jtolentino@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+8</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>ltheussl</id>
|
||||||
|
<name>Lukas Theussl</name>
|
||||||
|
<email>ltheussl@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mperham</id>
|
||||||
|
<name>Mike Perham</name>
|
||||||
|
<email>mperham@gmail.com</email>
|
||||||
|
<organization>IBM</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-6</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>snicoll</id>
|
||||||
|
<name>Stephane Nicoll</name>
|
||||||
|
<email>snicoll@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</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>vmassol</id>
|
||||||
|
<name>Vincent Massol</name>
|
||||||
|
<email>vmassol@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>vsiveton</id>
|
||||||
|
<name>Vincent Siveton</name>
|
||||||
|
<email>vsiveton@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>PMC Member</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-5</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>aramirez</id>
|
||||||
|
<name>Allan Q. Ramirez</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>baerrach</id>
|
||||||
|
<name>Barrie Treloar</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>bayard</id>
|
||||||
|
<name>Henri Yandell</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>bellingard</id>
|
||||||
|
<name>Fabrice Bellingard</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>chrisjs</id>
|
||||||
|
<name>Chris Stevenson</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dantran</id>
|
||||||
|
<name>Dan Tran</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dblevins</id>
|
||||||
|
<name>David Blevins</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dfabulich</id>
|
||||||
|
<name>Daniel Fabulich</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dkulp</id>
|
||||||
|
<name>Daniel Kulp</name>
|
||||||
|
<email>dkulp@apache.org</email>
|
||||||
|
<organization>IONA</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-5</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dlr</id>
|
||||||
|
<name>Daniel Rall</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>epunzalan</id>
|
||||||
|
<name>Edwin Punzalan</name>
|
||||||
|
<email>epunzalan@mergere.com</email>
|
||||||
|
<organization>Mergere</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+8</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>felipeal</id>
|
||||||
|
<name>Felipe Leme</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>handyande</id>
|
||||||
|
<name>Andrew Williams</name>
|
||||||
|
<email>handyande@apache.org</email>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>0</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>hboutemy</id>
|
||||||
|
<name>Herve Boutemy</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jjensen</id>
|
||||||
|
<name>Jeff Jensen</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mkleint</id>
|
||||||
|
<name>Milos Kleint</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>oching</id>
|
||||||
|
<name>Maria Odea B. Ching</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>olamy</id>
|
||||||
|
<name>Olivier Lamy</name>
|
||||||
|
<email>olamy@apache.org</email>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>pschneider</id>
|
||||||
|
<name>Patrick Schneider</name>
|
||||||
|
<email>pschneider@gmail.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>-6</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>rgoers</id>
|
||||||
|
<name>Ralph Goers</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>rinku</id>
|
||||||
|
<name>Rahul Thakur</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>shinobu</id>
|
||||||
|
<name>Shinobu Kuwai</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>smorgrav</id>
|
||||||
|
<name>Torbjorn Eikli Smorgrav</name>
|
||||||
|
<roles>
|
||||||
|
<role>Committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<!--End Committers-->
|
||||||
|
</developers>
|
||||||
|
</project>
|
|
@ -0,0 +1 @@
|
||||||
|
2426103263cbaf5519433f16bd98cdc31870a10a
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?><metadata>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-parent</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<latest>7</latest>
|
||||||
|
<release>7</release>
|
||||||
|
<versions>
|
||||||
|
<version>7</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20080122220618</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
Binary file not shown.
|
@ -0,0 +1,339 @@
|
||||||
|
<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">
|
||||||
|
<!--
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
-->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<artifactId>maven-plugins</artifactId>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<version>10</version>
|
||||||
|
</parent>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<packaging>maven-plugin</packaging>
|
||||||
|
<name>Maven Dependency Plugin</name>
|
||||||
|
<version>2.0</version>
|
||||||
|
<prerequisites>
|
||||||
|
<maven>2.0.3</maven>
|
||||||
|
</prerequisites>
|
||||||
|
<issueManagement>
|
||||||
|
<system>JIRA</system>
|
||||||
|
<url>http://jira.codehaus.org/browse/MDEP</url>
|
||||||
|
</issueManagement>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>brianf</id>
|
||||||
|
<name>Brian Fox</name>
|
||||||
|
<email>brianf@apache.org</email>
|
||||||
|
<roles>
|
||||||
|
<role>Lead Developer</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>5</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>dtran</id>
|
||||||
|
<name>Dan T. Tran</name>
|
||||||
|
<email>dantran@gmail.com</email>
|
||||||
|
<organization>
|
||||||
|
</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jdcasey</id>
|
||||||
|
<name>John Casey</name>
|
||||||
|
<email>casey.john.d@gmail.com</email>
|
||||||
|
<organization>
|
||||||
|
</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<properties>
|
||||||
|
<maven.version>2.0.8</maven.version>
|
||||||
|
</properties>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<id>ensure-no-container-api</id>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<bannedDependencies>
|
||||||
|
<excludes>
|
||||||
|
<exclude>org.codehaus.plexus:plexus-component-api</exclude>
|
||||||
|
</excludes>
|
||||||
|
<message>The new containers are not supported. You probably added a dependency that is missing the exclusions.</message>
|
||||||
|
</bannedDependencies>
|
||||||
|
<!-- <requirePluginVersions><banSnapshots>false</banSnapshots></requirePluginVersions>-->
|
||||||
|
</rules>
|
||||||
|
<fail>true</fail>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>clean</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>clean</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<!-- Need of more head space in order to run the unit tests !-->
|
||||||
|
<argLine>-Xmx256m</argLine>
|
||||||
|
<systemProperties>
|
||||||
|
<property>
|
||||||
|
<name>maven.home</name>
|
||||||
|
<value>${maven.home}</value>
|
||||||
|
</property>
|
||||||
|
</systemProperties>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
<version>2.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
|
<version>2.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>2.0.2</version>
|
||||||
|
</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-plugin-plugin</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>1.0-alpha-3</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.0-beta-7</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>2.0-beta-6</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-artifact</artifactId>
|
||||||
|
<version>${maven.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-plugin-api</artifactId>
|
||||||
|
<version>${maven.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-project</artifactId>
|
||||||
|
<version>${maven.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-model</artifactId>
|
||||||
|
<version>${maven.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-core</artifactId>
|
||||||
|
<version>${maven.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>maven-plugin-testing-tools</artifactId>
|
||||||
|
<version>1.0-alpha-3</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
<version>1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-archiver</artifactId>
|
||||||
|
<version>1.0-alpha-9</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-container-default</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-component-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-utils</artifactId>
|
||||||
|
<version>1.4.6</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>file-management</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-container-default</artifactId>
|
||||||
|
<version>1.0-alpha-9-stable-1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>maven-dependency-analyzer</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>maven-dependency-tree</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.shared</groupId>
|
||||||
|
<artifactId>maven-common-artifact-filters</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-io</artifactId>
|
||||||
|
<version>1.0-alpha-1</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-container-default</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.codehaus.plexus</groupId>
|
||||||
|
<artifactId>plexus-component-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Dependencies for Analyze-report mojo -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.reporting</groupId>
|
||||||
|
<artifactId>maven-reporting-api</artifactId>
|
||||||
|
<version>2.0.6</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.reporting</groupId>
|
||||||
|
<artifactId>maven-reporting-impl</artifactId>
|
||||||
|
<version>2.0.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.doxia</groupId>
|
||||||
|
<artifactId>doxia-sink-api</artifactId>
|
||||||
|
<version>1.0-alpha-8</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.doxia</groupId>
|
||||||
|
<artifactId>doxia-site-renderer</artifactId>
|
||||||
|
<version>1.0-alpha-8</version>
|
||||||
|
</dependency>
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>2.0-beta-5</version>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-dependency-plugin-2.0</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-dependency-plugin-2.0</developerConnection>
|
||||||
|
<url>http://svn.apache.org/viewcvs.cgi/maven/plugins/tags/maven-dependency-plugin-2.0</url>
|
||||||
|
</scm>
|
||||||
|
</project>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?><metadata>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<latest>2.0</latest>
|
||||||
|
<release>2.0</release>
|
||||||
|
<versions>
|
||||||
|
<version>2.0</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20080122220618</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?><metadata>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<latest>2.0</latest>
|
||||||
|
<release>2.0</release>
|
||||||
|
<versions>
|
||||||
|
<version>2.0</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20080122220618</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
|
@ -0,0 +1,185 @@
|
||||||
|
<?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.maven</groupId>
|
||||||
|
<artifactId>maven-parent</artifactId>
|
||||||
|
<version>7</version>
|
||||||
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugins</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<version>10</version>
|
||||||
|
<name>Maven Plugins</name>
|
||||||
|
<description>Maven Plugins</description>
|
||||||
|
<url>http://maven.apache.org/plugins/</url>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven User List</name>
|
||||||
|
<subscribe>users-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<post>users@maven.apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
|
||||||
|
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Developer List</name>
|
||||||
|
<subscribe>dev-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<post>dev@maven.apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Commits List</name>
|
||||||
|
<subscribe>commits-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<post>commits@maven.apache.org</post>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
|
||||||
|
</mailingList>
|
||||||
|
<!-- duplication from parent pom - temporary until they inherit properly -->
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Announcements List</name>
|
||||||
|
<post>announce@maven.apache.org</post>
|
||||||
|
<subscribe>announce-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>announce-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Issues List</name>
|
||||||
|
<post>issues@maven.apache.org</post>
|
||||||
|
<subscribe>issues-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>issues-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Maven Notifications List</name>
|
||||||
|
<post>notifications@maven.apache.org</post>
|
||||||
|
<subscribe>notifications-subscribe@maven.apache.org</subscribe>
|
||||||
|
<unsubscribe>notifications-unsubscribe@maven.apache.org</unsubscribe>
|
||||||
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<distributionManagement>
|
||||||
|
<site>
|
||||||
|
<id>apache.website</id>
|
||||||
|
<url>scp://people.apache.org/www/maven.apache.org/plugins/</url>
|
||||||
|
</site>
|
||||||
|
</distributionManagement>
|
||||||
|
<modules>
|
||||||
|
<module>maven-ant-plugin</module>
|
||||||
|
<module>maven-antrun-plugin</module>
|
||||||
|
<module>maven-assembly-plugin</module>
|
||||||
|
<module>maven-changelog-plugin</module>
|
||||||
|
<module>maven-changes-plugin</module>
|
||||||
|
<module>maven-checkstyle-plugin</module>
|
||||||
|
<module>maven-clean-plugin</module>
|
||||||
|
<module>maven-compiler-plugin</module>
|
||||||
|
<module>maven-dependency-plugin</module>
|
||||||
|
<module>maven-deploy-plugin</module>
|
||||||
|
<module>maven-doap-plugin</module>
|
||||||
|
<module>maven-docck-plugin</module>
|
||||||
|
<module>maven-ear-plugin</module>
|
||||||
|
<module>maven-eclipse-plugin</module>
|
||||||
|
<module>maven-ejb-plugin</module>
|
||||||
|
<module>maven-gpg-plugin</module>
|
||||||
|
<module>maven-help-plugin</module>
|
||||||
|
<module>maven-idea-plugin</module>
|
||||||
|
<module>maven-install-plugin</module>
|
||||||
|
<module>maven-invoker-plugin</module>
|
||||||
|
<module>maven-jar-plugin</module>
|
||||||
|
<module>maven-javadoc-plugin</module>
|
||||||
|
<module>maven-one-plugin</module>
|
||||||
|
<module>maven-plugin-plugin</module>
|
||||||
|
<module>maven-pmd-plugin</module>
|
||||||
|
<module>maven-project-info-reports-plugin</module>
|
||||||
|
<module>maven-rar-plugin</module>
|
||||||
|
<module>maven-remote-resources-plugin</module>
|
||||||
|
<module>maven-repository-plugin</module>
|
||||||
|
<module>maven-resources-plugin</module>
|
||||||
|
<module>maven-site-plugin</module>
|
||||||
|
<module>maven-source-plugin</module>
|
||||||
|
<module>maven-stage-plugin</module>
|
||||||
|
<module>maven-verifier-plugin</module>
|
||||||
|
<module>maven-war-plugin</module>
|
||||||
|
</modules>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-10</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-10</developerConnection>
|
||||||
|
<url>http://svn.apache.org/viewcvs.cgi/maven/plugins/tags/maven-plugins-10</url>
|
||||||
|
</scm>
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<tagBase>https://svn.apache.org/repos/asf/maven/plugins/tags</tagBase>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>2.0-beta-5</version>
|
||||||
|
<configuration>
|
||||||
|
<stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugins/${artifactId}-${version}</stagingSiteURL>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>ciProfile</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>enableCiProfile</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-docck-plugin</artifactId>
|
||||||
|
<version>1.0-beta-2</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
<reporting>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</reporting>
|
||||||
|
</project>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?><metadata>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugins</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<latest>10</latest>
|
||||||
|
<release>10</release>
|
||||||
|
<versions>
|
||||||
|
<version>10</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20080122220618</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
43
pom.xml
43
pom.xml
|
@ -430,17 +430,58 @@ under the License.
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Mercury -->
|
<!-- Mercury -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.mercury</groupId>
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
<artifactId>mercury-artifact</artifactId>
|
<artifactId>mercury-artifact</artifactId>
|
||||||
<version>${mercuryVersion}</version>
|
<version>${mercuryVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.mercury</groupId>
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
<artifactId>mercury-external</artifactId>
|
<artifactId>mercury-external</artifactId>
|
||||||
<version>${mercuryVersion}</version>
|
<version>${mercuryVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Mercury test dependencies -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-repo-local-m2</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-repo-remote-m2</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-md-sat</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-util</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-transport-http</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.mercury</groupId>
|
||||||
|
<artifactId>mercury-transport-http</artifactId>
|
||||||
|
<version>${mercuryVersion}</version>
|
||||||
|
<type>test-jar</type>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Needed for backward compat aspect. -->
|
<!-- Needed for backward compat aspect. -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>aspectj</groupId>
|
<groupId>aspectj</groupId>
|
||||||
|
|
Loading…
Reference in New Issue