Skip to content

Instantly share code, notes, and snippets.

@t1
Last active May 25, 2023 04:20
Show Gist options
  • Save t1/6e57b2ce5fde63887d4e04882c77e73d to your computer and use it in GitHub Desktop.
Save t1/6e57b2ce5fde63887d4e04882c77e73d to your computer and use it in GitHub Desktop.
wildfly-maven-plugin configured to include GraphQL feature pack
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>4.1.0.Final</version>
<configuration>
<feature-packs>
<feature-pack>
<location>wildfly@maven(org.jboss.universe:community-universe):current#28.0.1.Final</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.extras.graphql:wildfly-microprofile-graphql-feature-pack:2.0.0.Final</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>microprofile-graphql</layer>
</layers>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment