mirror of https://github.com/apache/maven.git
[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:
parent
2b89a5d26f
commit
19a5eeb1f6
|
@ -24,4 +24,25 @@
|
||||||
<modules>
|
<modules>
|
||||||
<module>level2</module>
|
<module>level2</module>
|
||||||
</modules>
|
</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>
|
</project>
|
Loading…
Reference in New Issue