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>
|
2011-09-04 07:15:37 -04:00
|
|
|
<version>21</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
|
|
|
|
2008-07-12 01:12:59 -04:00
|
|
|
<modules>
|
2008-09-23 12:13:09 -04:00
|
|
|
<module>core-it-support</module>
|
2009-01-10 04:32:39 -05:00
|
|
|
<module>core-it-suite</module>
|
2008-07-12 01:12:59 -04:00
|
|
|
</modules>
|
2009-01-10 04:32:39 -05:00
|
|
|
|
2008-09-23 23:32:57 -04:00
|
|
|
<scm>
|
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/core-integration-testing/trunk/</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk/</developerConnection>
|
|
|
|
<url>http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/</url>
|
|
|
|
</scm>
|
2011-07-08 16:37:00 -04:00
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
|
|
|
<url>https://builds.apache.org/hudson/view/M-R/view/Maven/job/core-integration-testing-maven-3-trunk/</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
2012-01-04 15:25:03 -05:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2012-06-18 15:32:28 -04:00
|
|
|
<version>2.12</version>
|
2012-01-04 15:25:03 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
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>
|
2008-07-12 01:12:59 -04:00
|
|
|
</project>
|