2006-04-07 15:57:09 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-07-07 12:23:28 +00:00
|
|
|
|
2008-11-25 07:11:35 +00: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.
|
|
|
|
-->
|
2006-07-07 12:23:28 +00:00
|
|
|
|
2009-03-01 08:55:40 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2009-04-22 23:04:06 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2004-08-09 19:02:31 +00:00
|
|
|
<parent>
|
2005-03-23 06:52:55 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 23:04:06 +00:00
|
|
|
<artifactId>maven</artifactId>
|
2014-08-11 13:55:03 -07:00
|
|
|
<version>3.2.4-SNAPSHOT</version>
|
2004-08-09 19:02:31 +00:00
|
|
|
</parent>
|
2010-05-30 17:52:23 +00:00
|
|
|
|
2004-08-09 19:02:31 +00:00
|
|
|
<artifactId>maven-core</artifactId>
|
2010-05-30 17:52:23 +00:00
|
|
|
|
2005-11-16 11:04:23 +00:00
|
|
|
<name>Maven Core</name>
|
2011-07-20 22:10:09 +00:00
|
|
|
<description>Maven Core classes.</description>
|
2010-05-30 17:52:23 +00:00
|
|
|
|
2013-09-14 11:55:34 +02:00
|
|
|
<scm><!-- remove when git scm url format can accept artifact-id at the end, as automatically inherited -->
|
|
|
|
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</connection>
|
|
|
|
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</developerConnection>
|
2014-08-11 13:55:03 -07:00
|
|
|
<tag>HEAD</tag>
|
2013-09-14 11:55:34 +02:00
|
|
|
</scm>
|
|
|
|
|
2014-10-24 01:25:49 +02:00
|
|
|
<properties>
|
|
|
|
<checkstyle.violation.ignore>RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,JavadocType,LineLength,MethodName,MagicNumber,ConstantName,VisibilityModifier,InnerAssignment</checkstyle.violation.ignore>
|
|
|
|
</properties>
|
|
|
|
|
2004-08-09 19:02:31 +00:00
|
|
|
<dependencies>
|
2009-03-30 01:17:57 +00:00
|
|
|
<!-- Maven -->
|
2004-08-09 19:02:31 +00:00
|
|
|
<dependency>
|
2005-03-23 06:52:55 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2004-08-09 19:02:31 +00:00
|
|
|
<artifactId>maven-model</artifactId>
|
|
|
|
</dependency>
|
2005-04-22 11:01:33 +00:00
|
|
|
<dependency>
|
2008-11-27 22:32:16 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-10-26 20:16:00 +00:00
|
|
|
<artifactId>maven-settings</artifactId>
|
2005-10-14 07:15:39 +00:00
|
|
|
</dependency>
|
2010-07-16 09:59:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings-builder</artifactId>
|
|
|
|
</dependency>
|
2010-06-02 13:56:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
|
|
|
</dependency>
|
2008-05-05 13:46:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-10-26 20:16:00 +00:00
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
2004-08-09 19:02:31 +00:00
|
|
|
<dependency>
|
2005-03-23 06:52:55 +00:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-29 04:45:20 +00:00
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2005-05-31 16:24:34 +00:00
|
|
|
</dependency>
|
2008-11-21 04:49:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2009-04-22 23:04:06 +00:00
|
|
|
<artifactId>maven-model-builder</artifactId>
|
2008-11-21 04:49:46 +00:00
|
|
|
</dependency>
|
2010-08-24 22:46:07 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-aether-provider</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 21:43:28 +01:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-24 22:46:07 +00:00
|
|
|
<artifactId>aether-impl</artifactId>
|
|
|
|
</dependency>
|
2010-08-26 20:09:34 +00:00
|
|
|
<dependency>
|
2011-12-30 21:43:28 +01:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-26 20:09:34 +00:00
|
|
|
<artifactId>aether-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-12-30 21:43:28 +01:00
|
|
|
<groupId>org.eclipse.aether</groupId>
|
2010-08-26 20:09:34 +00:00
|
|
|
<artifactId>aether-util</artifactId>
|
|
|
|
</dependency>
|
2009-03-30 01:17:57 +00:00
|
|
|
<!-- Plexus -->
|
|
|
|
<dependency>
|
2013-03-13 01:11:34 +00:00
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
2009-03-30 01:17:57 +00:00
|
|
|
</dependency>
|
2014-08-26 14:11:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.sisu</groupId>
|
|
|
|
<artifactId>sisu-guice</artifactId>
|
|
|
|
<classifier>no_aop</classifier>
|
|
|
|
</dependency>
|
2008-07-10 15:52:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
|
|
|
</dependency>
|
2005-10-12 14:28:09 +00:00
|
|
|
<dependency>
|
2005-10-14 07:15:39 +00:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2005-06-23 06:23:17 +00:00
|
|
|
</dependency>
|
2006-01-12 05:50:54 +00:00
|
|
|
<dependency>
|
2006-12-07 00:17:53 +00:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-classworlds</artifactId>
|
2006-01-12 05:50:54 +00:00
|
|
|
</dependency>
|
2008-11-25 07:11:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-annotations</artifactId>
|
|
|
|
</dependency>
|
2009-02-12 22:44:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.plexus</groupId>
|
|
|
|
<artifactId>plexus-sec-dispatcher</artifactId>
|
|
|
|
</dependency>
|
2009-02-13 15:39:54 +00:00
|
|
|
<dependency>
|
2009-04-22 23:04:06 +00:00
|
|
|
<groupId>commons-jxpath</groupId>
|
|
|
|
<artifactId>commons-jxpath</artifactId>
|
2009-04-27 00:16:42 +00:00
|
|
|
<scope>test</scope>
|
2009-03-30 01:11:02 +00:00
|
|
|
</dependency>
|
2004-08-09 19:02:31 +00:00
|
|
|
</dependencies>
|
2010-05-30 17:52:23 +00:00
|
|
|
|
2007-06-28 20:53:55 +00:00
|
|
|
<build>
|
2009-06-12 21:09:06 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2013-05-28 10:49:38 +01:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes combine.children="append">
|
|
|
|
<exclude>lifecycle-executor.txt</exclude>
|
|
|
|
<exclude>plugin-manager.txt</exclude>
|
|
|
|
<exclude>project-builder.txt</exclude>
|
2013-07-08 10:56:10 +01:00
|
|
|
<exclude>src/site/resources/design/**</exclude>
|
2013-05-28 10:49:38 +01:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<versionRange>[1.2,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>create-timestamp</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore />
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2007-06-28 20:53:55 +00:00
|
|
|
<plugins>
|
2008-11-25 07:11:35 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
2008-12-03 23:23:52 +00:00
|
|
|
</plugin>
|
2012-11-25 01:34:53 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>sisu-maven-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>main-index</goal>
|
|
|
|
<goal>test-index</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-09-07 05:25:49 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2014-11-02 21:15:50 +01:00
|
|
|
<version>1.1.0</version>
|
2008-12-14 22:07:08 +00:00
|
|
|
<models>
|
2009-06-27 18:18:46 +00:00
|
|
|
<model>src/main/mdo/toolchains.mdo</model>
|
2008-12-14 22:07:08 +00:00
|
|
|
</models>
|
2007-09-07 05:25:49 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-12-05 14:21:04 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>create-noncanonicalrev</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create-timestamp</goal>
|
|
|
|
</goals>
|
2009-06-12 21:09:06 +00:00
|
|
|
<configuration>
|
2014-02-09 12:14:43 +01:00
|
|
|
<timestampFormat>'NON-CANONICAL_'yyyy-MM-dd'T'HH:mm:ss_'${user.name}'</timestampFormat>
|
2012-12-05 14:21:04 +01:00
|
|
|
<timestampPropertyName>nonCanonicalRevision</timestampPropertyName>
|
2009-06-12 21:09:06 +00:00
|
|
|
</configuration>
|
2012-12-05 14:21:04 +01:00
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>create-buildnumber</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
2009-12-14 15:03:20 +00:00
|
|
|
<configuration>
|
|
|
|
<doCheck>false</doCheck>
|
|
|
|
<doUpdate>false</doUpdate>
|
2012-12-05 14:21:04 +01:00
|
|
|
<revisionOnScmFailure>${nonCanonicalRevision}</revisionOnScmFailure>
|
2009-12-14 15:03:20 +00:00
|
|
|
</configuration>
|
2012-12-05 14:21:04 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-12 18:22:06 +00:00
|
|
|
</project>
|