Plugin Documentation

Goals available for this plugin:

Goal Description
wildfly:add-resource Adds a resource If force is set to false and the resource has already been added to the server, an error will occur and the operation will fail.
wildfly:deploy Deploys the application to the WildFly Application Server. If force is set to true, the server is queried to see if the application already exists. If the application already exists, the application is redeployed instead of deployed. If the application does not exist the application is deployed as normal. If force is set to false and the application has already been deployed to the server, an error will occur and the deployment will fail.
wildfly:deploy-artifact Deploys an arbitrary artifact to the WildFly application server
wildfly:deploy-only Deploys only the application to the WildFly Application Server without first invoking the the execution of the lifecycle phase 'package' prior to executing itself. If force is set to true, the server is queried to see if the application already exists. If the application already exists, the application is redeployed instead of deployed. If the application does not exist the application is deployed as normal. If force is set to false and the application has already been deployed to the server, an error will occur and the deployment will fail.
wildfly:execute-commands Execute commands to the running WildFly Application Server. Commands should be formatted in the same manor CLI commands are formatted. Executing commands in a batch will rollback all changes if one command fails.
     <batch>true</batch>
     <fail-on-error>false</fail-on-error>
     <commands>
         <command>/subsystem=logging/console=CONSOLE:write-attribute(name=level,value=DEBUG)</command>
     </commands>
wildfly:help Display help information on wildfly-maven-plugin.
Call mvn wildfly:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
wildfly:redeploy Redeploys the application to the WildFly Application Server.
wildfly:redeploy-only Redeploys only the application to the WildFly Application Server without first invoking the the execution of the lifecycle phase 'package' prior to executing itself.
wildfly:run Starts a standalone instance of WildFly and deploys the application to the server. This goal will block until cancelled or a shutdown is invoked from a management client.
wildfly:shutdown Shuts down a running WildFly Application Server. Can also be used to issue a reload instead of a full shutdown. If a reload is executed the process will wait for the serer to be available before returning.
wildfly:start Starts a standalone instance of WildFly Application Server. The purpose of this goal is to start a WildFly Application Server for testing during the maven lifecycle.
wildfly:undeploy Undeploys the application to the WildFly Application Server.
wildfly:undeploy-artifact Undeploys (removes) an arbitrary artifact to the WildFly application server

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 3.3.1
JDK 1.8
Memory No minimum requirement.
Disk Space No minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.wildfly.plugins</groupId>
          <artifactId>wildfly-maven-plugin</artifactId>
          <version>2.1.0.Beta1</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.wildfly.plugins</groupId>
        <artifactId>wildfly-maven-plugin</artifactId>
        <version>2.1.0.Beta1</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"