Skip to content

Instantly share code, notes, and snippets.

@t1
Last active April 26, 2024 12:50
Show Gist options
  • Save t1/e6b330bb0d1477585aed2cb0fc8a2e83 to your computer and use it in GitHub Desktop.
Save t1/e6b330bb0d1477585aed2cb0fc8a2e83 to your computer and use it in GitHub Desktop.
wildfly-maven-plugin with glow setup for ITs
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>5.0.0.Final</version>
<configuration>
<discover-provisioning-info>
<suggest>true</suggest>
</discover-provisioning-info>
<debug>true</debug>
<bootable-jar>true</bootable-jar>
</configuration>
<executions>
<execution>
<id>provision</id>
<phase>package</phase>
<goals>
<goal>package</goal>
<goal>image</goal>
</goals>
</execution>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
<goal>deploy</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>shutdown</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment