o adding IT it0019

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:42:12 +00:00
parent 8296990401
commit 25060ce4d3
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<model>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core-it0019</artifactId>
<description>Test that a version is managed by pluginManagement in the super POM</description>
<version>1.0</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<!-- version should be managed via super POM -->
</plugin>
</plugins>
</build>
</model>

View File

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