We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5461e2a + e5d1004 commit fbd93f1Copy full SHA for fbd93f1
get_started/Develop-your-addon.asciidoc
@@ -339,7 +339,7 @@ public class ExampleFurnaceTest {
339
ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
340
.addBeansXML()
341
.addAsAddonDependencies(
342
- AddonDependencyEntry.create("org.example:example", "YOUR_VERSION"),
+ AddonDependencyEntry.create("org.example:example", "YOUR_VERSION")
343
);
344
return archive;
345
}
@@ -367,6 +367,8 @@ public class ExampleFurnaceTest {
367
368
369
AddonDependencyEntry.create("org.example:example", "YOUR_VERSION"),
370
+ // required to use CDI
371
+ AddonDependencyEntry.create("org.jboss.forge.furnace.container:cdi")
372
373
374
0 commit comments