mirror of https://github.com/apache/maven.git
98 lines
3.9 KiB
XML
98 lines
3.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>core-integration-testing</artifactId>
|
|
<groupId>org.apache.maven.its</groupId>
|
|
<version>2.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.apache.maven.its.plugins</groupId>
|
|
<artifactId>maven-it-plugins</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Maven Integration Tests :: Plugins</name>
|
|
|
|
<modules>
|
|
<module>maven-it-plugin-active-collection</module>
|
|
<module>maven-it-plugin-artifact</module>
|
|
<module>maven-it-plugin-class-loader</module>
|
|
<module>maven-it-plugin-configuration</module>
|
|
<module>maven-it-plugin-context-passing</module>
|
|
<module>maven-it-plugin-core-stubs</module>
|
|
<module>maven-it-plugin-dependency-resolution</module>
|
|
<module>maven-it-plugin-expression</module>
|
|
<module>maven-it-plugin-fork</module>
|
|
<module>maven-it-plugin-log-file</module>
|
|
<module>maven-it-plugin-no-project</module>
|
|
<module>maven-it-plugin-packaging</module>
|
|
<module>maven-it-plugin-parameter-implementation</module>
|
|
<module>maven-it-plugin-project-interpolation</module>
|
|
<module>maven-it-plugin-setter</module>
|
|
<module>maven-it-plugin-site</module>
|
|
<module>maven-it-plugin-toolchain</module>
|
|
<module>maven-it-plugin-touch</module>
|
|
<module>maven-it-plugin-uses-properties</module>
|
|
<module>maven-it-plugin-uses-wagon</module>
|
|
<module>maven-it-plugin-all</module>
|
|
<module>maven-it-plugin-plexus-utils-11</module>
|
|
<module>maven-it-plugin-plexus-utils-new</module>
|
|
<module>maven-it-plugin-plexus-component-api</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/core-integration-testing/trunk/core-it-support/core-it-plugins</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk/core-it-support/core-it-plugins</developerConnection>
|
|
<url>http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-support/core-it-plugins</url>
|
|
</scm>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>maven.it</id>
|
|
<name>Apache Maven Integration Testing Repository</name>
|
|
<url>http://repository.sonatype.org/content/repositories/maven-it-plugins</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>maven.it</id>
|
|
<name>${distMgmtSnapshotsName}</name>
|
|
<url>${distMgmtSnapshotsUrl}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<distMgmtSnapshotsName>Apache Maven Integration Testing Snapshot Repository</distMgmtSnapshotsName>
|
|
<distMgmtSnapshotsUrl>http://repository.sonatype.org/content/repositories/maven-it-plugin-snapshots</distMgmtSnapshotsUrl>
|
|
</properties>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.3</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|