2007-01-18 21:17:42 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2008-09-16 07:15:13 -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
|
|
|
|
|
|
|
|
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.
|
2009-10-19 07:03:59 -04:00
|
|
|
-->
|
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">
|
2006-10-26 01:00:09 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2006-10-26 01:00:09 -04:00
|
|
|
<parent>
|
2009-12-28 07:45:55 -05:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2011-07-08 16:37:00 -04:00
|
|
|
<artifactId>core-its</artifactId>
|
2009-12-28 07:45:55 -05:00
|
|
|
<version>2.1-SNAPSHOT</version>
|
2006-10-26 01:00:09 -04:00
|
|
|
</parent>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2011-07-10 16:10:12 -04:00
|
|
|
<artifactId>core-it-support</artifactId>
|
2006-10-26 01:00:09 -04:00
|
|
|
<packaging>pom</packaging>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2019-08-23 17:42:19 -04:00
|
|
|
<name>Maven Core IT Support</name>
|
|
|
|
<description>Maven Core Integration Tests support tools.</description>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
|
|
|
<modules>
|
2008-09-23 12:18:19 -04:00
|
|
|
<module>core-it-plugins</module>
|
2009-09-28 09:52:08 -04:00
|
|
|
<module>core-it-component</module>
|
2010-03-31 10:49:49 -04:00
|
|
|
<module>core-it-toolchain</module>
|
2008-09-23 12:52:33 -04:00
|
|
|
<module>core-it-wagon</module>
|
2008-09-23 12:59:24 -04:00
|
|
|
<module>core-it-support-artifacts</module>
|
2008-09-23 12:35:13 -04:00
|
|
|
<module>maven-it-helper</module>
|
2009-07-13 19:35:26 -04:00
|
|
|
<module>core-it-extension</module>
|
2020-01-29 15:14:26 -05:00
|
|
|
<module>core-it-javaagent</module>
|
2008-09-16 07:15:13 -04:00
|
|
|
</modules>
|
|
|
|
|
2007-01-18 21:17:42 -05:00
|
|
|
<!-- TODO this needs to be improved, right now it doesn't deploy to releases repo -->
|
|
|
|
<properties>
|
2008-09-16 07:15:13 -04:00
|
|
|
<repositoryUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</repositoryUrl>
|
2007-01-18 21:17:42 -05:00
|
|
|
</properties>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2006-10-26 23:48:58 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>mode-local-offline</id>
|
|
|
|
<properties>
|
2008-09-16 07:15:13 -04:00
|
|
|
<repositoryUrl>file:///tmp/mits/repository-remote</repositoryUrl>
|
2006-10-26 23:48:58 -04:00
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>${repositoryUrl}</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</profile>
|
2008-09-16 07:15:13 -04:00
|
|
|
</profiles>
|
2009-10-19 07:03:59 -04:00
|
|
|
</project>
|