1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3  ~ JBoss, Home of Professional Open Source.
4  ~ Copyright 2010, Red Hat, Inc., and individual contributors
5  ~ as indicated by the @author tags. See the copyright.txt file in the
6  ~ distribution for a full listing of individual contributors.
7  ~
8  ~ This is free software; you can redistribute it and/or modify it
9  ~ under the terms of the GNU Lesser General Public License as
10  ~ published by the Free Software Foundation; either version 2.1 of
11  ~ the License, or (at your option) any later version.
12  ~
13  ~ This software is distributed in the hope that it will be useful,
14  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
15  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  ~ Lesser General Public License for more details.
17  ~
18  ~ You should have received a copy of the GNU Lesser General Public
19  ~ License along with this software; if not, write to the Free
20  ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
22  -->
23<module name="org.jboss.as.server" xmlns="urn:jboss:module:1.9">
24    <properties>
25        <property name="jboss.api" value="private"/>
26        <property name="jboss.require-java-version" value="1.8"/>
27    </properties>
28
29    <main-class name="org.jboss.as.server.DomainServerMain"/>
30
31    <resources>
32        <resource-root path="wildfly-server-15.0.1.Final.jar"/>
33    </resources>
34
35    <dependencies>
36        <!-- for java.beans -->
37        <module name="java.desktop"/>
38        <module name="java.instrument"/>
39        <module name="java.logging"/>
40        <module name="java.management"/>
41        <module name="java.naming"/>
42        <module name="java.security.sasl"/>
43        <module name="java.xml"/>
44        <!-- Workaround for ELY-1561 -->
45        <module name="jdk.security.auth"/>
46
47        <!-- JAXP default dependencies. DO NOT REMOVE!!!
48             These are loaded by the JAXP redirect facility in jboss-modules when this module is used
49             as a boot module (this is the case for server processes in domain mode). The purpose is
50             to provide a common default JAXP implementation on all JDKs. This is necessary since we
51             have to override the JAXP APIs to fix incompatibilities with modular class-loading. In
52             the future we may be able to replace this construct if JAXP APIs are fixed on all known
53             JVMs *and* we implement a subsystem to provide a similar default/fallback common parser
54             behavior. Please discuss any design changes in this area on the WildFly development
55             mailing list before enacting.
56
57             Xalan is optional for deritives of wildfly-core that do not desire TransformerFactory
58             support, or wish to require that deployments bundle an xslt implementaiton to use it,
59             as it will break otherwise.
60        -->
61        <module name="org.apache.xalan" services="import" optional="true"/>
62        <module name="org.apache.xerces" services="import"/>
63        <module name="org.codehaus.woodstox" services="import"/>
64        <!-- END JAXP default dependencies -->
65
66        <!--this needs to remain here until common-beans is fixed to use passed classloader -->
67        <module name="org.jboss.common-beans" services="export" optional="true"/>
68
69        <module name="org.jboss.staxmapper"/>
70        <module name="org.jboss.dmr"/>
71        <module name="org.jboss.classfilewriter"/>
72        <module name="org.jboss.invocation"/>
73        <module name="org.jboss.jandex"/>
74        <module name="org.jboss.marshalling"/>
75        <module name="org.jboss.marshalling.river" services="import"/>
76        <module name="org.jboss.modules"/>
77        <module name="org.jboss.msc" export="true"/>
78        <module name="org.jboss.logging"/>
79        <module name="org.jboss.logmanager" services="import"/>
80        <module name="org.jboss.remoting"/>
81        <module name="org.jboss.stdio"/>
82        <module name="org.jboss.threads"/>
83        <module name="org.jboss.vfs" services="import"/>
84        <module name="org.jboss.as.controller"/>
85        <module name="org.jboss.as.deployment-repository"/>
86        <module name="org.jboss.as.domain-http-interface"/>
87        <module name="org.jboss.as.domain-management"/>
88        <module name="org.jboss.as.jmx" services="import"/>
89        <module name="org.jboss.as.network"/>
90        <module name="org.jboss.as.patching" optional="true" services="import"/>
91        <module name="org.jboss.as.platform-mbean"/>
92        <module name="org.jboss.as.process-controller"/>
93        <module name="org.jboss.as.protocol">
94            <imports>
95                <include path="**"/>
96            </imports>
97        </module>
98        <module name="org.jboss.as.remoting"/>
99        <module name="org.wildfly.security.elytron-private" services="import"/>
100        <module name="org.jboss.as.security" optional="true" services="import"/>
101        <module name="org.jboss.as.version"/>
102        <module name="org.picketbox" optional="true"/>
103        <module name="io.undertow.core"/>
104        <module name="org.wildfly.common"/>
105        <module name="org.wildfly.extension.core-management-client"/>
106        <!-- Allow javax->jakarta deployment transformation if this module is provided -->
107        <module name="org.wildfly.deployment.transformation" optional="true" services="import"/>
108    </dependencies>
109</module>
110