2006-03-10 10:34:04 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to you under the Apache License, Version
|
|
|
|
2.0 (the "License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0 Unless required by
|
|
|
|
applicable law or agreed to in writing, software distributed under
|
|
|
|
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
|
|
|
|
OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<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">
|
2004-04-12 15:28:51 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2006-03-10 10:34:04 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2006-03-10 19:17:59 -05:00
|
|
|
<artifactId>maven-parent</artifactId>
|
2008-06-20 17:00:03 -04:00
|
|
|
<version>8</version>
|
2006-03-10 10:34:04 -05:00
|
|
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
|
|
|
</parent>
|
2005-04-05 12:27:27 -04:00
|
|
|
<artifactId>maven</artifactId>
|
2008-02-18 08:25:20 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2005-03-16 01:55:21 -05:00
|
|
|
<packaging>pom</packaging>
|
2006-11-21 19:08:32 -05:00
|
|
|
<name>Apache Maven</name>
|
2008-07-06 12:08:04 -04:00
|
|
|
<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>
|
2005-11-27 22:11:40 -05:00
|
|
|
<url>http://maven.apache.org/</url>
|
2006-01-31 21:39:10 -05:00
|
|
|
<inceptionYear>2001</inceptionYear>
|
2004-04-15 10:43:58 -04:00
|
|
|
<issueManagement>
|
2004-04-16 10:26:48 -04:00
|
|
|
<system>jira</system>
|
2005-04-08 03:50:53 -04:00
|
|
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
2004-04-15 11:17:06 -04:00
|
|
|
</issueManagement>
|
2007-10-24 18:47:02 -04:00
|
|
|
|
2008-04-03 12:43:44 -04:00
|
|
|
<!-- TODO: TAKE THIS OUT BEFORE WE RELEASE! -->
|
|
|
|
<repositories>
|
2008-06-30 10:35:43 -04:00
|
|
|
<repository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
2008-04-03 12:43:44 -04:00
|
|
|
<repository>
|
|
|
|
<id>codehaus.snapshots</id>
|
|
|
|
<url>http://snapshots.repository.codehaus.org/</url>
|
2008-06-30 10:35:43 -04:00
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
2008-04-03 12:43:44 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2004-04-14 18:04:49 -04:00
|
|
|
<mailingLists>
|
2008-02-18 08:25:20 -05:00
|
|
|
<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>
|
2004-04-14 18:04:49 -04:00
|
|
|
<mailingList>
|
|
|
|
<name>Maven User List</name>
|
|
|
|
<subscribe>users-subscribe@maven.apache.org</subscribe>
|
|
|
|
<unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
|
2005-06-23 03:40:37 -04:00
|
|
|
<post>users@maven.apache.org</post>
|
|
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
|
2005-10-31 00:02:03 -05:00
|
|
|
<otherArchives>
|
|
|
|
<otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
|
|
|
|
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
|
2008-02-18 08:25:20 -05:00
|
|
|
<otherArchive>http://maven.users.markmail.org/</otherArchive>
|
2005-10-31 00:02:03 -05:00
|
|
|
</otherArchives>
|
2004-04-14 18:04:49 -04:00
|
|
|
</mailingList>
|
|
|
|
<mailingList>
|
2008-02-18 08:25:20 -05:00
|
|
|
<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>
|
2004-04-14 18:04:49 -04:00
|
|
|
</mailingList>
|
2005-10-14 02:53:44 -04:00
|
|
|
<mailingList>
|
|
|
|
<name>Maven Commits List</name>
|
|
|
|
<subscribe>commits-subscribe@maven.apache.org</subscribe>
|
|
|
|
<unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
|
2008-02-18 08:43:28 -05:00
|
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-commits</archive>
|
2008-02-18 08:25:20 -05:00
|
|
|
<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>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!--
|
|
|
|
duplication from parent pom - temporary until they inherit
|
|
|
|
properly
|
|
|
|
-->
|
2008-02-18 08:25:20 -05:00
|
|
|
<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>
|
2005-10-14 02:53:44 -04:00
|
|
|
</mailingList>
|
2004-04-14 18:04:49 -04:00
|
|
|
</mailingLists>
|
2005-03-09 20:35:25 -05:00
|
|
|
<scm>
|
2005-12-11 20:41:09 -05:00
|
|
|
<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>
|
2005-03-09 20:35:25 -05:00
|
|
|
</scm>
|
2005-09-15 09:37:47 -04:00
|
|
|
<build>
|
2005-10-14 02:53:44 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2007-10-18 20:19:11 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</plugin>
|
2007-11-15 00:37:55 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>aspectj-maven-plugin</artifactId>
|
|
|
|
<version>1.0-beta-2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2005-10-14 02:53:44 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<tagBase>https://svn.apache.org/repos/asf/maven/components/tags</tagBase>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2006-07-12 12:31:25 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2008-06-28 08:23:59 -04:00
|
|
|
<version>1.0-alpha-18</version>
|
2006-07-12 12:31:25 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>site-docs</id>
|
|
|
|
<phase>pre-site</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>xdoc</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
2007-01-07 14:13:33 -05:00
|
|
|
<id>standard</id>
|
2006-07-12 12:31:25 -04:00
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xpp3-reader</goal>
|
|
|
|
<goal>xpp3-writer</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-10-18 20:19:11 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</plugin>
|
2008-07-23 19:26:00 -04:00
|
|
|
<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>
|
2008-07-06 12:44:06 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-2</version>
|
|
|
|
</plugin>
|
2005-10-14 02:53:44 -04:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2007-03-01 22:25:26 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2008-06-22 09:03:37 -04:00
|
|
|
<version>2.4.2</version>
|
2007-10-23 04:27:25 -04:00
|
|
|
<configuration>
|
2008-01-15 15:37:38 -05:00
|
|
|
<forkMode>once</forkMode>
|
2007-10-23 04:27:25 -04:00
|
|
|
</configuration>
|
2007-03-01 22:25:26 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2005-09-15 09:37:47 -04:00
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>maven-core</module>
|
2008-04-16 00:58:47 -04:00
|
|
|
<module>maven-distribution</module>
|
2007-03-20 17:40:59 -04:00
|
|
|
<module>maven-lifecycle</module>
|
2005-09-15 09:37:47 -04:00
|
|
|
<module>maven-model</module>
|
|
|
|
<module>maven-plugin-api</module>
|
|
|
|
<module>maven-profile</module>
|
|
|
|
<module>maven-project</module>
|
2007-09-05 20:25:04 -04:00
|
|
|
<module>maven-reporting-api</module>
|
2006-04-07 11:57:09 -04:00
|
|
|
<module>maven-embedder</module>
|
2008-02-29 17:58:00 -05:00
|
|
|
<module>maven-workspace</module>
|
2008-03-01 09:07:09 -05:00
|
|
|
<module>maven-toolchain</module>
|
2005-09-15 09:37:47 -04:00
|
|
|
</modules>
|
2006-12-10 21:27:20 -05:00
|
|
|
<properties>
|
2008-07-23 19:26:00 -04:00
|
|
|
<artifactVersion>3.0-alpha-2-SNAPSHOT</artifactVersion>
|
2008-07-06 12:13:25 -04:00
|
|
|
<aspectjVersion>1.5.3</aspectjVersion>
|
2008-07-13 10:14:06 -04:00
|
|
|
<classWorldsVersion>1.2-alpha-13</classWorldsVersion>
|
2008-07-06 12:13:25 -04:00
|
|
|
<commonsCliVersion>1.0</commonsCliVersion>
|
2008-07-06 12:44:06 -04:00
|
|
|
<doxiaVersion>1.0-alpha-9</doxiaVersion>
|
2008-07-06 12:13:25 -04:00
|
|
|
<easyMockVersion>1.2_Java1.3</easyMockVersion>
|
2008-07-06 12:44:06 -04:00
|
|
|
<junitVersion>3.8.1</junitVersion>
|
2008-07-06 12:13:25 -04:00
|
|
|
<plexusVersion>1.0-alpha-48</plexusVersion>
|
2008-07-06 12:08:04 -04:00
|
|
|
<plexusInteractivityVersion>1.0-alpha-6</plexusInteractivityVersion>
|
2008-07-23 19:26:00 -04:00
|
|
|
<plexusInterpolationVersion>1.1</plexusInterpolationVersion>
|
|
|
|
<plexusUtilsVersion>1.5.5</plexusUtilsVersion>
|
2008-07-06 12:13:25 -04:00
|
|
|
<wagonVersion>1.0-beta-3</wagonVersion>
|
2006-12-10 21:27:20 -05:00
|
|
|
</properties>
|
2008-04-15 11:41:13 -04:00
|
|
|
|
|
|
|
<!--start-->
|
2005-09-15 09:37:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${junitVersion}</version>
|
2005-09-15 09:37:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependencyManagement>
|
2008-04-15 11:41:13 -04:00
|
|
|
<!--end-->
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependencies>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!-- Maven Modules -->
|
2008-05-05 09:46:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-workspace</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-lifecycle</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-reporting-api</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-profile</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2008-05-05 09:46:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${project.version}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-07-06 12:08:04 -04:00
|
|
|
<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>
|
|
|
|
<!-- Plexus -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
<version>${plexusUtilsVersion}</version>
|
|
|
|
</dependency>
|
2005-08-02 17:34:54 -04:00
|
|
|
<dependency>
|
2005-10-02 20:54:01 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2005-08-02 17:34:54 -04:00
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2006-12-10 22:19:50 -05:00
|
|
|
<version>${plexusVersion}</version>
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependency>
|
2006-12-06 19:17:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-classworlds</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${classWorldsVersion}</version>
|
2006-12-30 09:54:59 -05:00
|
|
|
</dependency>
|
2008-04-03 11:13:24 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${plexusInterpolationVersion}</version>
|
2008-04-03 11:13:24 -04:00
|
|
|
</dependency>
|
2008-07-06 12:08:04 -04:00
|
|
|
<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 -->
|
2005-10-12 10:28:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2007-03-10 00:38:50 -05:00
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
<version>${wagonVersion}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
2007-02-09 17:01:38 -05:00
|
|
|
<version>${wagonVersion}</version>
|
2005-10-12 10:28:09 -04:00
|
|
|
</dependency>
|
2007-03-10 19:48:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<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>
|
2007-08-17 02:01:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.artifact</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
2008-06-30 10:35:43 -04:00
|
|
|
<version>${artifactVersion}</version>
|
2007-10-23 04:27:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.doxia</groupId>
|
|
|
|
<artifactId>doxia-sink-api</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${doxiaVersion}</version>
|
2007-10-23 04:27:25 -04:00
|
|
|
</dependency>
|
2006-09-01 11:29:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${easyMockVersion}</version>
|
2006-09-01 11:29:52 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-04-15 11:41:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${commonsCliVersion}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<!-- Needed for backward compat aspect. -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>aspectj</groupId>
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
2008-07-06 12:08:04 -04:00
|
|
|
<version>${aspectjVersion}</version>
|
2008-05-05 09:46:40 -04:00
|
|
|
</dependency>
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependencies>
|
2008-04-15 11:41:13 -04:00
|
|
|
<!--start-->
|
2005-08-02 17:34:54 -04:00
|
|
|
</dependencyManagement>
|
2008-07-06 12:08:04 -04:00
|
|
|
<!--end-->
|
2005-09-15 09:37:47 -04:00
|
|
|
<distributionManagement>
|
|
|
|
<site>
|
2006-11-03 03:06:02 -05:00
|
|
|
<id>apache.website</id>
|
|
|
|
<url>scp://people.apache.org/www/maven.apache.org/ref/${project.version}/</url>
|
2005-09-15 09:37:47 -04:00
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
2007-06-14 23:10:55 -04:00
|
|
|
<profiles>
|
2007-06-22 19:54:45 -04:00
|
|
|
<profile>
|
|
|
|
<id>osgi</id>
|
|
|
|
<build>
|
2007-10-23 04:27:25 -04:00
|
|
|
<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>
|
2007-06-22 19:54:45 -04:00
|
|
|
</build>
|
|
|
|
</profile>
|
2007-06-14 23:10:55 -04:00
|
|
|
<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>
|
2007-09-23 21:31:22 -04:00
|
|
|
<profile>
|
|
|
|
<id>run-its</id>
|
|
|
|
<modules>
|
2008-04-03 11:13:24 -04:00
|
|
|
<module>maven-embedder-integration-tests</module>
|
2007-09-23 21:31:22 -04:00
|
|
|
<module>maven-core-it-runner</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2008-01-22 15:49:07 -05:00
|
|
|
<profile>
|
|
|
|
<id>strict</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-07-06 12:08:04 -04:00
|
|
|
<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>
|
2008-01-22 15:49:07 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2007-06-14 23:10:55 -04:00
|
|
|
</profiles>
|
2008-07-11 17:16:59 -04:00
|
|
|
</project>
|