-
Notifications
You must be signed in to change notification settings - Fork 7
/
provision.xml
29 lines (29 loc) · 1.36 KB
/
provision.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" ?>
<!--
USAGE:
/path/to/galleon/bin/galleon.sh provision /path/to/this/provision.xml -dir=/path/to/created/wildfly/install/dir
(note that `-dir` should have double hyphens, which don't work in XML comments!)
-->
<installation xmlns="urn:jboss:galleon:provisioning:3.0">
<!-- below here we specify the desired WildFly version -->
<feature-pack location="wildfly@maven(org.jboss.universe:community-universe):current#31.0.1.Final">
<default-configs inherit="true"/>
</feature-pack>
<!-- below here we specify the desired GraphQL feature pack version
see https://github.com/wildfly-extras/wildfly-graphql-feature-pack/wiki/Supported-versions-and-future-versions-roadmap for the list of supported FP versions depending on the used WildFly version
-->
<feature-pack location="org.wildfly.extras.graphql:wildfly-microprofile-graphql-feature-pack:2.3.0.Final">
<default-configs inherit="false"/>
</feature-pack>
<config model="standalone" name="standalone-graphql.xml">
<layers>
<include name="microprofile-graphql"/>
<include name="jaxrs-server"/>
<include name="observability"/>
<include name="jmx-remoting"/>
</layers>
</config>
<options>
<option name="optional-packages" value="passive+"/>
</options>
</installation>