Skip to content
Marek Novotný edited this page May 12, 2017 · 4 revisions

Windup Web Distribution defaults to building on Wildfly. However, it can also be built on JBoss EAP.

The following steps are required to do this:

  1. Install the EAP offline zip as a local artifact
    mvn install:install-file -Dfile=<path-to-file> \
-DgroupId=jboss-eap -DartifactId=jboss-eap-dist -Dversion=7.0.0.GA -Dpackaging=zip
  1. Run the build with the following paramters:
mvn -Dwildfly.groupId=jboss-eap -Dwildfly.artifactId=jboss-eap-dist \
-Dversion.wildfly=7.0.0.GA -Dwildfly.directory=jboss-eap-7.0 clean install

This will produce an RHAMT distribution on EAP in the target folder.