This project was created from the archetype "wildfly-subsystem-archetype".

Documentation on Subsystems can be found here: https://docs.wildfly.org/26/Extending_WildFly.html

To deploy it:

Step 1:
Register the extension in "standalone.xml" and add the subsystem configuration:

    <extensions>
        ...
        <extension module="com.acme.corp.tracker"/>
    </extensions>

    <profile>
        ...
        <subsystem xmlns="urn:mycompany:mysubsystem:1.0">
        </subsystem>
		
    </profile>

Step 2:
After having built this project with a call to "mvn install", the directory "target/module" will contain a subdirectory structure
corresponding to the module name "com.acme.corp.tracker" (each "." is replaced with a path separator).
This subdirectory contains two files "acme-subsystem.jar" and "module.xml".
Copy the subdirectory of "target/module" to "%WILDFLY_HOME%/modules".


Now start the WildFly server.