mirror of https://github.com/apache/maven.git
o adding IT it0062
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eeebdef75d
commit
c098d5742b
|
@ -0,0 +1,14 @@
|
||||||
|
<project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-core-it0062</artifactId>
|
||||||
|
<description>Test that a deployment of a snapshot falls back to a non-snapshot repository if no snapshot repository is
|
||||||
|
specified.</description>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>repo</id>
|
||||||
|
<url>file://localhost/${project.basedir}/target/test-repo</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
</project>
|
|
@ -0,0 +1,16 @@
|
||||||
|
package org.apache.maven.it0062;
|
||||||
|
|
||||||
|
public class Person
|
||||||
|
{
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public void setName( String name )
|
||||||
|
{
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName()
|
||||||
|
{
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue