]
George Gastaldi commented on FURNACE-38:
----------------------------------------
A suggestion is to have the interface name as the ArtifactId, like: {{Ui.ADDON_NAME}}
Generate addon metadata
-----------------------
Key: FURNACE-38
URL:
https://issues.jboss.org/browse/FURNACE-38
Project: Forge: Furnace
Issue Type: Feature Request
Components: Maven, Test Harness
Affects Versions: 2.15.4.Final
Reporter: George Gastaldi
Fix For: 2.x Future
It would be nice to have a Mojo (Maven plugin) that could generate the Metadata for a
given addon. Eg:
{code:java}
package org.jboss.forge.addon.ui;
import javax.annotation.Generated;
@Generated("DO NOT MODIFY THIS FILE, as it is generated automatically by the Furnace
Maven Plugin")
public interface AddonMetadata
{
public static final String NAME = "org.jboss.forge.addon:ui";
public static final String VERSION = "2.15.3-SNAPSHOT";
public static final String ID = NAME + "," + VERSION;
}
{code}