mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
bea9eca2f6
o Changed getExecutionsAsMap() in Plugin (within maven.mdo) to throw an IllegalStateException if two PluginExecutions are detected with the same id. This method should always be called during inheritance assembly... o Changed PluginExecution's id field to have a defaultValue of 'default' within maven.mdo. NOTE: It may be necessary to double-check the id-collision within MavenProjectBuilder, in case there is no inheritance of plugins...I'll add this, and follow this commit momentarily. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@191620 13f79535-47bb-0310-9956-ffa450edef68
36 lines
902 B
XML
36 lines
902 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.</groupId>
|
|
<artifactId>maven-it0025</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<executions>
|
|
<execution>
|
|
<configuration>
|
|
<pluginItem>test.txt</pluginItem>
|
|
</configuration>
|
|
|
|
<goals>
|
|
<goal>touch</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<configuration>
|
|
<pluginItem>test2.txt</pluginItem>
|
|
</configuration>
|
|
<goals>
|
|
<goal>touch</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</model>
|