Skip to content
This repository was archived by the owner on Feb 4, 2026. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

core

This addon exports dependencies on all built-in Forge addons. Its does not provide any additional services of its own.

Dependencies: All Built In

Setup

This Addon requires the following installation steps.

Add configuration to pom.xml

To use this addon, you must add it as a dependency in the pom.xml of your forge-addon classified artifact:

<dependency>
   <groupId>org.jboss.forge.addon</groupId>
   <artifactId>core</artifactId>
   <classifier>forge-addon</classifier>
   <version>${version}</version>
</dependency>

Features

Convenient programming experience

Because the Core addon provides a dependency on all other core Forge addons, it may be used to gain access to all core addons via one dependency.

Note
It is NOT recommended to depend on this addon unless you legitimately need access to all core functionality. This is considered bad addon-writing etiquette. You should probably add dependencies only to those addon which are required.