2008-09-16 07:15:13 -04:00
|
|
|
<?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>
|
|
|
|
|
2007-08-21 20:55:12 -04:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
2008-09-23 12:23:47 -04:00
|
|
|
<artifactId>maven-it-sample</artifactId>
|
2007-02-15 18:49:58 -05:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2008-09-23 12:23:47 -04:00
|
|
|
<name>Maven Integration Test Sample</name>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2007-02-15 18:49:58 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-verifier</artifactId>
|
2008-09-21 08:30:07 -04:00
|
|
|
<version>1.2-SNAPSHOT</version>
|
2007-02-15 18:49:58 -05:00
|
|
|
</dependency>
|
2007-06-29 02:01:25 -04:00
|
|
|
<dependency>
|
2008-09-23 12:23:47 -04:00
|
|
|
<groupId>org.apache.maven.its</groupId>
|
|
|
|
<artifactId>maven-integration-test-helper</artifactId>
|
|
|
|
<version>2.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2007-02-15 18:49:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2008-09-21 08:30:07 -04:00
|
|
|
<version>3.8.2</version>
|
2007-02-15 18:49:58 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2008-09-16 07:15:13 -04:00
|
|
|
|
2007-07-23 22:20:12 -04:00
|
|
|
<!-- TODO: remove when snapshots are released -->
|
2008-09-16 07:15:13 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
2008-09-21 08:30:07 -04:00
|
|
|
<enabled>true</enabled>
|
2008-09-16 07:15:13 -04:00
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2007-02-15 18:49:58 -05:00
|
|
|
</project>
|