mirror of https://github.com/apache/maven.git
o adding IT it0078
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465852 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ed68272a05
commit
1ce3958182
|
@ -0,0 +1,24 @@
|
||||||
|
<project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.apache.maven.it</groupId>
|
||||||
|
<artifactId>maven-core-it0078</artifactId>
|
||||||
|
<description>Test that configuration for maven-compiler-plugin is injected from
|
||||||
|
PluginManagement section even when it's not explicitly defined in the
|
||||||
|
plugins section.</description>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
<version>1.0</version>
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude implementation="java.lang.String">**/Test.java</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class Test
|
||||||
|
{
|
||||||
|
private List strings;
|
||||||
|
}
|
Loading…
Reference in New Issue