2006-10-26 01:00:09 -04:00
|
|
|
<project>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2006-12-12 09:47:25 -05:00
|
|
|
<version>4</version>
|
2006-10-26 01:00:09 -04:00
|
|
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2006-10-26 01:19:59 -04:00
|
|
|
<artifactId>core-integration-testing</artifactId>
|
2006-10-26 01:00:09 -04:00
|
|
|
<version>1-SNAPSHOT</version>
|
|
|
|
<name>Maven Integration Testing</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<url>http://maven.apache.org</url>
|
2006-10-26 23:48:58 -04:00
|
|
|
<scm>
|
2006-10-26 01:19:59 -04:00
|
|
|
<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/viewcvs.cgi/maven/core-integration-testing/trunk</url>
|
2006-10-26 01:00:09 -04:00
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>jira</system>
|
|
|
|
<url>http://jira.codehaus.org/browse/MNG</url>
|
|
|
|
</issueManagement>
|
|
|
|
<mailingLists>
|
|
|
|
<mailingList>
|
|
|
|
<name>Maven User List</name>
|
|
|
|
<subscribe>users-subscribe@maven.apache.org</subscribe>
|
|
|
|
<unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
|
|
|
|
<post>users@maven.apache.org</post>
|
|
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
|
|
|
|
<otherArchives>
|
|
|
|
<otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
|
|
|
|
<otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
|
|
|
|
</otherArchives>
|
|
|
|
</mailingList>
|
|
|
|
<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>
|
|
|
|
</mailingList>
|
|
|
|
<mailingList>
|
|
|
|
<name>Maven Commits List</name>
|
|
|
|
<subscribe>commits-subscribe@maven.apache.org</subscribe>
|
|
|
|
<unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
|
|
|
|
<post>commits@maven.apache.org</post>
|
|
|
|
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
|
|
|
|
</mailingList>
|
|
|
|
</mailingLists>
|
|
|
|
<modules>
|
2006-10-26 01:58:32 -04:00
|
|
|
<module>core-integration-testing-plugins</module>
|
2006-10-26 01:00:09 -04:00
|
|
|
</modules>
|
2006-10-26 23:48:58 -04:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>apache.releases</id>
|
|
|
|
<url>${repositoryUrl}</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>${repositoryUrl}</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>mode-local-offline</id>
|
|
|
|
<properties>
|
|
|
|
<repositoryUrl>file:///tmp/mits/repository-remote</repositoryUrl>
|
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>${repositoryUrl}</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2006-10-26 01:00:09 -04:00
|
|
|
</project>
|