[MNG-3057][MCOMPILER-94] Add configuration that would trip up POM transformation because of MCOMPILER-94, to ensure this doesn't happen.

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@747432 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2009-02-24 17:01:13 +00:00
parent 2b89a5d26f
commit 19a5eeb1f6
1 changed files with 21 additions and 0 deletions

View File

@ -24,4 +24,25 @@
<modules>
<module>level2</module>
</modules>
<!-- This section is technically INCORRECT, but should have no effect on the result
of the build. It is described in MCOMPILER-94, and could interact with the
handling of POMs for install and deploy, when packaging == pom. Adding here
to force the issue and make sure the POM transformation still happens correctly.
-->
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>mcompiler-94</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>