]
George Gastaldi closed FORGE-2032.
----------------------------------
Resolution: Done
org.jboss.forge.addon.maven.plugins.ConfigurationElement should
support attributes
----------------------------------------------------------------------------------
Key: FORGE-2032
URL:
https://issues.jboss.org/browse/FORGE-2032
Project: Forge
Issue Type: Feature Request
Components: Build Tools - Maven
Affects Versions: 2.10.1.Final
Reporter: George Gastaldi
Assignee: George Gastaldi
Fix For: 2.10.2.Final
Some configuration elements allow usage of attributes. This must be supported in the
Maven model API:
Eg:
{code}
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<dependencies>
<dependency>
<groupId>custom-rule</groupId>
<artifactId>custom-rule-sample</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<myCustomRule
implementation="org.apache.maven.enforcer.rule.MyCustomRule">
<shouldIfail>false</shouldIfail>
</myCustomRule>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
{code}