mirror of https://github.com/apache/maven.git
[MNG-7878] Extend test for ConsumerPom and modules in plugin configuration
This commit is contained in:
parent
838cda7db0
commit
ce8fc3a31c
|
@ -16,6 +16,22 @@
|
||||||
<target xml:space="preserve"> 1.5 </target>
|
<target xml:space="preserve"> 1.5 </target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<modules>
|
||||||
|
<module>
|
||||||
|
<test>test</test>
|
||||||
|
</module>
|
||||||
|
<jarModule>
|
||||||
|
<groupId>artifactGroupId</groupId>
|
||||||
|
<artifactId>artifactId</artifactId>
|
||||||
|
<uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
|
||||||
|
</jarModule>
|
||||||
|
</modules>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -27,6 +43,18 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<modules>
|
||||||
|
<webModule>
|
||||||
|
<groupId>artifactGroupId</groupId>
|
||||||
|
<artifactId>artifactId</artifactId>
|
||||||
|
<excluded>true</excluded>
|
||||||
|
</webModule>
|
||||||
|
</modules>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|
|
@ -47,6 +47,23 @@ under the License.
|
||||||
<target xml:space="preserve"> 1.5 </target>
|
<target xml:space="preserve"> 1.5 </target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<modules>
|
||||||
|
<module>
|
||||||
|
<test>test</test>
|
||||||
|
</module>
|
||||||
|
<jarModule>
|
||||||
|
<groupId>artifactGroupId</groupId>
|
||||||
|
<artifactId>artifactId</artifactId>
|
||||||
|
<uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
|
||||||
|
</jarModule>
|
||||||
|
</modules>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -59,6 +76,19 @@ under the License.
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<modules>
|
||||||
|
<webModule>
|
||||||
|
<groupId>artifactGroupId</groupId>
|
||||||
|
<artifactId>artifactId</artifactId>
|
||||||
|
<excluded>true</excluded>
|
||||||
|
</webModule>
|
||||||
|
</modules>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue