mirror of https://github.com/apache/maven.git
219 lines
7.7 KiB
XML
219 lines
7.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright 2005-2006 The Apache Software Foundation.
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-parent</artifactId>
|
|
<version>4</version>
|
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>maven</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Apache Maven</name>
|
|
<version>2.1-SNAPSHOT</version>
|
|
<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>
|
|
<issueManagement>
|
|
<system>jira</system>
|
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
|
</issueManagement>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>apache.snapshots</id>
|
|
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<!-- For plexus snapshots -->
|
|
<repositories>
|
|
<repository>
|
|
<id>codehaus.snapshots</id>
|
|
<url>http://snapshots.repository.codehaus.org</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<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>
|
|
</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>
|
|
<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>1.0-alpha-13</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>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
<modules>
|
|
<module>maven-artifact</module>
|
|
<module>maven-artifact-manager</module>
|
|
<module>maven-artifact-test</module>
|
|
<module>maven-build-context</module>
|
|
<module>maven-core</module>
|
|
<module>maven-error-diagnostics</module>
|
|
<module>maven-model</module>
|
|
<module>maven-monitor</module>
|
|
<module>maven-plugin-api</module>
|
|
<module>maven-plugin-descriptor</module>
|
|
<module>maven-plugin-parameter-documenter</module>
|
|
<module>maven-plugin-registry</module>
|
|
<module>maven-profile</module>
|
|
<module>maven-project</module>
|
|
<module>maven-reporting</module>
|
|
<module>maven-repository-metadata</module>
|
|
<module>maven-script</module>
|
|
<module>maven-settings</module>
|
|
<module>maven-cli</module>
|
|
<module>maven-embedder</module>
|
|
</modules>
|
|
<properties>
|
|
<plexusVersion>1.0-alpha-16</plexusVersion>
|
|
<wagonVersion>1.0-beta-3-SNAPSHOT</wagonVersion>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<version>${plexusVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-component-api</artifactId>
|
|
<version>${plexusVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-classworlds</artifactId>
|
|
<version>1.2-alpha-7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>1.4.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-manager</artifactId>
|
|
<version>${wagonVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<version>1.2_Java1.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jdom</groupId>
|
|
<artifactId>jdom</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>apache.website</id>
|
|
<url>scp://people.apache.org/www/maven.apache.org/ref/${project.version}/</url>
|
|
</site>
|
|
</distributionManagement>
|
|
</project>
|