Skip to content

Instantly share code, notes, and snippets.

@acdcjunior
Created December 4, 2014 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acdcjunior/dbd01dad9497b137ea61 to your computer and use it in GitHub Desktop.
Save acdcjunior/dbd01dad9497b137ea61 to your computer and use it in GitHub Desktop.
Wildfly Maven Plugin afterDeployment CLI command example snippet pom.xml
<build>...<plugins>...
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>1.0.2.Final</version>
<configuration>
<afterDeployment>
<commands>
<command>/subsystem=security/security-domain="unused-domain":remove</command>
</commands>
</afterDeployment>
</configuration>
</plugin>
...</plugins>...</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment