mirror of https://github.com/apache/maven.git
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:
parent
46c71c1b08
commit
d5252d6980
|
@ -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>
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
name = jason
|
Binary file not shown.
|
@ -0,0 +1,5 @@
|
|||
<project>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</project>
|
Loading…
Reference in New Issue