2008-07-12 01:12:59 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2008-07-12 01:12:59 -04:00
|
|
|
<!--
|
2008-09-17 18:08:01 -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
|
2008-07-12 01:12:59 -04:00
|
|
|
|
2008-09-17 18:08:01 -04:00
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
2010-12-04 02:55:53 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2008-07-12 01:12:59 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-09-17 18:08:01 -04:00
|
|
|
|
2008-07-12 03:13:42 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2015-03-03 20:03:15 -05:00
|
|
|
<version>26</version>
|
2008-07-12 03:13:42 -04:00
|
|
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
|
|
|
</parent>
|
2008-07-12 01:12:59 -04:00
|
|
|
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2011-07-08 16:37:00 -04:00
|
|
|
<artifactId>core-its</artifactId>
|
2008-07-12 01:12:59 -04:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2011-07-11 17:42:02 -04:00
|
|
|
<name>Maven Core ITs</name>
|
|
|
|
<description>Maven Core Integration Tests provide tooling to test every aspect of Maven functionalities with any Maven version.</description>
|
2009-01-10 04:42:13 -05:00
|
|
|
|
2014-06-13 13:49:40 -04:00
|
|
|
<contributors>
|
|
|
|
<contributor>
|
|
|
|
<name>Mark Ingram</name>
|
|
|
|
</contributor>
|
|
|
|
</contributors>
|
|
|
|
|
2008-09-23 23:32:57 -04:00
|
|
|
<scm>
|
2012-12-01 06:26:03 -05:00
|
|
|
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git</connection>
|
|
|
|
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git</developerConnection>
|
2013-09-19 17:36:19 -04:00
|
|
|
<url>https://github.com/apache/maven-integration-testing/tree/${project.scm.tag}</url>
|
2008-09-23 23:32:57 -04:00
|
|
|
</scm>
|
2011-07-08 16:37:00 -04:00
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
2012-11-26 04:00:41 -05:00
|
|
|
<url>https://builds.apache.org/view/M-R/view/Maven/job/core-integration-testing-maven-3/</url>
|
2011-07-08 16:37:00 -04:00
|
|
|
</ciManagement>
|
2013-05-19 11:55:08 -04:00
|
|
|
<distributionManagement>
|
|
|
|
<site>
|
|
|
|
<id>apache.website</id>
|
|
|
|
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
|
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.site.path>core-its</maven.site.path>
|
|
|
|
<maven.site.cache>${user.home}/maven-sites</maven.site.cache>
|
2015-03-03 20:03:15 -05:00
|
|
|
<rat.ignoreErrors>true</rat.ignoreErrors>
|
2013-05-19 11:55:08 -04:00
|
|
|
</properties>
|
2011-07-08 16:37:00 -04:00
|
|
|
|
2012-12-14 15:28:14 -05:00
|
|
|
<modules>
|
|
|
|
<module>core-it-support</module>
|
|
|
|
<module>core-it-suite</module>
|
|
|
|
</modules>
|
|
|
|
|
2014-02-09 15:57:51 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2015-02-26 10:44:37 -05:00
|
|
|
<version>1.6-SNAPSHOT</version>
|
2014-02-09 15:57:51 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2011-07-09 17:28:43 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<name>Apache Snapshot Repository</name>
|
|
|
|
<url>http://repository.apache.org/snapshots</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2013-05-29 21:07:13 -04:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>reporting</id>
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
2013-09-19 17:36:19 -04:00
|
|
|
<configuration>
|
|
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled><!-- waiting for MPIR-267 -->
|
|
|
|
<!-- pin down urls to to avoid interpolated values from the modules, waiting for MPIR-290 -->
|
|
|
|
<anonymousConnection>${project.scm.connection}</anonymousConnection>
|
|
|
|
<developerConnection>${project.scm.developerConnection}</developerConnection>
|
|
|
|
</configuration>
|
2013-05-29 21:07:13 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>default</id>
|
|
|
|
<reports>
|
|
|
|
<report>jxr</report>
|
|
|
|
<report>test-jxr</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2008-07-12 01:12:59 -04:00
|
|
|
</project>
|