mirror of https://github.com/apache/maven.git
o adding IT it0074
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cbab99d736
commit
c5b5b8f9f5
|
@ -0,0 +1,40 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0074</artifactId>
|
||||
<description>Test that plugin-level configuration instances are not nullified by
|
||||
execution-level configuration instances.</description>
|
||||
<version>1.0</version>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>precompile</id>
|
||||
<phase>initialize</phase>
|
||||
<configuration>
|
||||
<includes >
|
||||
<include implementation="java.lang.String">org/apache/maven/it0074/Person.java</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>compile</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,6 @@
|
|||
package org.apache.maven.it0074;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
}
|
Loading…
Reference in New Issue