]
George Gastaldi updated FURNACE-43:
-----------------------------------
Fix Version/s: 2.x Future
Support @AddonDependencies(automatic=true) to remove the need for
manual specification of Addon dependencies
------------------------------------------------------------------------------------------------------------
Key: FURNACE-43
URL:
https://issues.jboss.org/browse/FURNACE-43
Project: Forge: Furnace
Issue Type: Feature Request
Components: Test Harness
Affects Versions: 2.16.0.Final
Reporter: Lincoln Baxter III
Fix For: 2.x Future
The following @AddonDependencies annotation would signal to the test harness that all
Addons from the current maven module should be imported to the test case deployment:
{code}
@Deployment
@AddonDependencies(automatic=true)
public static AddonArchive getDeployment()
{
final AddonArchive archive = ShrinkWrap.create(AddonArchive.class)
.addBeansXML());
return archive;
}
{code}