Uploaded image for project: 'Forge'
  1. Forge
  2. FORGE-2032

org.jboss.forge.addon.maven.plugins.ConfigurationElement should support attributes

XMLWordPrintable

    • Icon: Feature Request Feature Request
    • Resolution: Done
    • Icon: Major Major
    • 2.11.0.Final
    • 2.10.1.Final
    • Build Tools - Maven
    • None

      Some configuration elements allow usage of attributes. This must be supported in the Maven model API:

      Eg:

        <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>
      

            rhn-support-ggastald George Gastaldi
            rhn-support-ggastald George Gastaldi
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: