o adding IT it0059

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:46:37 +00:00
parent 46c71c1b08
commit d5252d6980
5 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0059</artifactId>
<description>Verify that maven-1 POMs will be ignored but not stop the resolution
process.</description>
<version>1.0</version>
<repositories>
<repository>
<id>test</id>
<url>file:test-repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,16 @@
package org.apache.maven.it0001;
public class Person
{
private String name;
public void setName( String name )
{
this.name = name;
}
public String getName()
{
return name;
}
}

View File

@ -0,0 +1,5 @@
<project>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</project>