o adding IT it0067

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

View File

@ -0,0 +1,22 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugins.it</groupId>
<artifactId>maven-it0067-plugin</artifactId>
<description>Test activation of a profile from the command line.</description>
<packaging>maven-plugin</packaging>
<version>1.0-SNAPSHOT</version>
<profiles>
<profile>
<id>test-profile</id>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

View File

@ -0,0 +1,18 @@
package org.apache.maven.it0021;
import junit.framework.TestCase;
public class Person
{
private String name;
public void setName( String name )
{
this.name = name;
}
public String getName()
{
return name;
}
}