mirror of https://github.com/apache/maven.git
o adding IT it0025
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465799 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6f7ae017e9
commit
1d151813b7
|
@ -0,0 +1,40 @@
|
|||
<model>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.</groupId>
|
||||
<artifactId>maven-it0025</artifactId>
|
||||
<description>Test multiple goal executions with different execution-level configs.</description>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-core-it-plugin</artifactId>
|
||||
<version>1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>test1</id>
|
||||
|
||||
<configuration>
|
||||
<pluginItem>test.txt</pluginItem>
|
||||
</configuration>
|
||||
|
||||
<goals>
|
||||
<goal>touch</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>test2</id>
|
||||
|
||||
<configuration>
|
||||
<pluginItem>test2.txt</pluginItem>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>touch</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</model>
|
|
@ -0,0 +1,16 @@
|
|||
package org.apache.maven.it0023;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue