mirror of https://github.com/apache/maven.git
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:
parent
f06d85145e
commit
5767f15e88
|
@ -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>
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue