Upgrade wildfly90 to 9.0.0.CR1.

Also, for all wildfly ports:

- Remove stray .orig files from plist.
- Fix rc.conf settings in pkg-message files; use pkg-message.in everywhere.
- Add @dir entries to fix directory permissions.
- Make configuration writable by user www (fix startup errors).

PR:		200092
Submitted by:	olgeni
Approved by:	maintainer
This commit is contained in:
Jimmy Olgeni 2015-05-11 10:52:41 +00:00
parent 3d0fba850d
commit 9eedf80c44
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=386063
12 changed files with 2940 additions and 434 deletions

View file

@ -3,7 +3,7 @@
PORTNAME= wildfly80
PORTVERSION= 8.0.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= java www
MASTER_SITES= http://download.jboss.org/wildfly/${WILDFLY_VERSION}/
DISTNAME= wildfly-${WILDFLY_VERSION}
@ -22,6 +22,7 @@ VAR_DIR?= /var
LOG_DIR?= ${VAR_DIR}/log/${PORTNAME}
PID_FILE= ${VAR_DIR}/run/${PORTNAME}.pid
WILDFLY_VERSION=8.0.0.Final
SUB_FILES= pkg-message
SUB_LIST= APP_SHORTNAME=${PORTNAME} \
LOG_DIR=${LOG_DIR} \
@ -31,12 +32,18 @@ SUB_LIST= APP_SHORTNAME=${PORTNAME} \
APP_HOME=${PREFIX}/wildfly-${PORTVERSION}
PLIST_SUB= APP_HOME=wildfly-${PORTVERSION}
post-patch:
${RM} ${WRKSRC}/bin/add-user.sh.orig
do-build:
${RM} ${WRKSRC}/bin/*.bat
${RM} -rf ${WRKSRC}/bin/service
${RM} -rf ${WRKSRC}/bin/init.d
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION} && cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdmu -R ${USER}:${GROUP} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}
${MKDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION})
${CHMOD} +x ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}/bin/*.sh
${RMDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}/.installation
.include <bsd.port.mk>

View file

@ -12,4 +12,4 @@ To change JVM args, edit appropriate standalone.conf.
To add the initial admin user:
/usr/local/wildfly-8.0.0/bin/add-user.sh
%%LOCALBASE%%/wildfly-8.0.0/bin/add-user.sh

View file

@ -1,9 +1,30 @@
@owner www
@group www
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
@mode 644
%%APP_HOME%%/appclient/configuration/appclient.xml
%%APP_HOME%%/appclient/configuration/logging.properties
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
@mode
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
%%APP_HOME%%/bin/.jbossclirc
%%APP_HOME%%/bin/add-user.properties
%%APP_HOME%%/bin/add-user.sh
@ -255,16 +276,6 @@
%%APP_HOME%%/docs/schema/wildfly-rts_1_0.xsd
%%APP_HOME%%/docs/schema/wildfly-security-manager_1_0.xsd
%%APP_HOME%%/docs/schema/wildfly-undertow_1_0.xsd
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/jboss-modules.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-3.3.1.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
@ -994,15 +1005,6 @@
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/java.sql.Driver
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
%%APP_HOME%%/standalone/deployments/README.txt
%%APP_HOME%%/welcome-content/bkg.gif
%%APP_HOME%%/welcome-content/documentation.html
@ -1808,7 +1810,3 @@
@dir %%APP_HOME%%/bin
@dir %%APP_HOME%%/appclient/configuration
@dir %%APP_HOME%%/appclient
@dir %%APP_HOME%%/.installation
@dir %%APP_HOME%%
@owner
@group

View file

@ -3,6 +3,7 @@
PORTNAME= wildfly81
PORTVERSION= 8.1.0
PORTREVISION= 1
CATEGORIES= java www
MASTER_SITES= http://download.jboss.org/wildfly/${WILDFLY_VERSION}/
DISTNAME= wildfly-${WILDFLY_VERSION}
@ -21,6 +22,7 @@ VAR_DIR?= /var
LOG_DIR?= ${VAR_DIR}/log/${PORTNAME}
PID_FILE= ${VAR_DIR}/run/${PORTNAME}.pid
WILDFLY_VERSION=8.1.0.Final
SUB_FILES= pkg-message
SUB_LIST= APP_SHORTNAME=${PORTNAME} \
LOG_DIR=${LOG_DIR} \
@ -30,6 +32,9 @@ SUB_LIST= APP_SHORTNAME=${PORTNAME} \
APP_HOME=${PREFIX}/wildfly-${PORTVERSION}
PLIST_SUB= APP_HOME=wildfly-${PORTVERSION}
post-patch:
${RM} ${WRKSRC}/bin/add-user.sh.orig
do-build:
${RM} ${WRKSRC}/bin/*.bat
${RM} -rf ${WRKSRC}/bin/service

View file

@ -12,4 +12,4 @@ To change JVM args, edit appropriate standalone.conf.
To add the initial admin user:
${PREFIX}/wildfly-8.1.0/bin/add-user.sh
%%LOCALBASE%%/wildfly-8.1.0/bin/add-user.sh

View file

@ -1,13 +1,33 @@
@owner www
@group www
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
@mode 644
%%APP_HOME%%/appclient/configuration/appclient.xml
%%APP_HOME%%/appclient/configuration/logging.properties
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
@mode
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
%%APP_HOME%%/bin/.jbossclirc
%%APP_HOME%%/bin/add-user.properties
%%APP_HOME%%/bin/add-user.sh
%%APP_HOME%%/bin/add-user.sh.orig
%%APP_HOME%%/bin/appclient.conf
%%APP_HOME%%/bin/appclient.sh
%%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt
@ -259,16 +279,6 @@
%%APP_HOME%%/docs/schema/wildfly-security-manager_1_0.xsd
%%APP_HOME%%/docs/schema/wildfly-undertow_1_0.xsd
%%APP_HOME%%/docs/schema/wildfly-undertow_1_1.xsd
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/jboss-modules.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-3.3.1.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
@ -1011,15 +1021,6 @@
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/java.sql.Driver
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
%%APP_HOME%%/standalone/deployments/README.txt
%%APP_HOME%%/welcome-content/bkg.gif
%%APP_HOME%%/welcome-content/documentation.html
@ -1031,7 +1032,797 @@
%%APP_HOME%%/welcome-content/noredirect.html
%%APP_HOME%%/welcome-content/wildfly.css
%%APP_HOME%%/welcome-content/wildfly_logo.png
@dir %%APP_HOME%%/domain/data/content
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/welcome-content
@dir %%APP_HOME%%/standalone/tmp/auth
@dir %%APP_HOME%%/standalone/tmp
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/standalone/lib
@dir %%APP_HOME%%/standalone/deployments
@dir %%APP_HOME%%/standalone/configuration
@dir %%APP_HOME%%/standalone
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk
@dir %%APP_HOME%%/modules/system/layers/base/sun
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security/manager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security/manager
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/jberet/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/jberet
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/config/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/config
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/common
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api
@dir %%APP_HOME%%/modules/system/layers/base/org/omg
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke
@dir %%APP_HOME%%/modules/system/layers/base/org/jsoup/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jsoup
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time/main
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time
@dir %%APP_HOME%%/modules/system/layers/base/org/joda
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-jboss-httpserver-httpspi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-jboss-httpserver-httpspi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/META-INF
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/timers
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist/main
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/directory/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/directory
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/stomp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/stomp
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/amqp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/amqp
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/hql/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/hql
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/3
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus
@dir %%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main
@dir %%APP_HOME%%/modules/system/layers/base/org/bouncycastle
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/openjpa
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/lucene
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/avro/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/avro
@dir %%APP_HOME%%/modules/system/layers/base/org/apache
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr
@dir %%APP_HOME%%/modules/system/layers/base/org
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom/main
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom
@dir %%APP_HOME%%/modules/system/layers/base/nu
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip/main
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip
@dir %%APP_HOME%%/modules/system/layers/base/net
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth
@dir %%APP_HOME%%/modules/system/layers/base/javax/security
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee
@dir %%APP_HOME%%/modules/system/layers/base/javax/management
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws
@dir %%APP_HOME%%/modules/system/layers/base/javax/json/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/json/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/json
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/el
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch
@dir %%APP_HOME%%/modules/system/layers/base/javax/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation
@dir %%APP_HOME%%/modules/system/layers/base/javax
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api
@dir %%APP_HOME%%/modules/system/layers/base/javaee
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/websocket
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/servlet
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/core/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/core
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow
@dir %%APP_HOME%%/modules/system/layers/base/io/netty/main
@dir %%APP_HOME%%/modules/system/layers/base/io/netty
@dir %%APP_HOME%%/modules/system/layers/base/io
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk
@dir %%APP_HOME%%/modules/system/layers/base/ibm
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt/main
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt
@dir %%APP_HOME%%/modules/system/layers/base/gnu
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel
@dir %%APP_HOME%%/modules/system/layers/base/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava/main
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava
@dir %%APP_HOME%%/modules/system/layers/base/com/google
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng
@dir %%APP_HOME%%/modules/system/layers/base/com/github
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml
@dir %%APP_HOME%%/modules/system/layers/base/com
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos
@dir %%APP_HOME%%/modules/system/layers/base/ch
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm/main
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm
@dir %%APP_HOME%%/modules/system/layers/base/asm
@dir %%APP_HOME%%/modules/system/layers/base
@dir %%APP_HOME%%/modules/system/layers
@dir %%APP_HOME%%/modules/system
@dir %%APP_HOME%%/modules
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/domain/tmp
@dir %%APP_HOME%%/domain/data/content
@dir %%APP_HOME%%/domain/data
@dir %%APP_HOME%%/domain/configuration
@dir %%APP_HOME%%/domain
@dir %%APP_HOME%%/docs/schema
@dir %%APP_HOME%%/docs/examples/configs
@dir %%APP_HOME%%/docs/examples
@dir %%APP_HOME%%/docs
@dir %%APP_HOME%%/bin/client
@dir %%APP_HOME%%/bin
@dir %%APP_HOME%%/appclient/configuration
@dir %%APP_HOME%%/appclient

View file

@ -3,6 +3,7 @@
PORTNAME= wildfly82
PORTVERSION= 8.2.0
PORTREVISION= 1
CATEGORIES= java www
MASTER_SITES= http://download.jboss.org/wildfly/${WILDFLY_VERSION}/
DISTNAME= wildfly-${WILDFLY_VERSION}
@ -20,7 +21,7 @@ GROUP= www
VAR_DIR?= /var
LOG_DIR?= ${VAR_DIR}/log/${PORTNAME}
PID_FILE= ${VAR_DIR}/run/${PORTNAME}.pid
WILDFLY_VERSION= 8.2.0.Final
WILDFLY_VERSION=8.2.0.Final
SUB_FILES= pkg-message
SUB_LIST= APP_SHORTNAME=${PORTNAME} \
@ -31,6 +32,9 @@ SUB_LIST= APP_SHORTNAME=${PORTNAME} \
APP_HOME=${PREFIX}/wildfly-${PORTVERSION}
PLIST_SUB= APP_HOME=wildfly-${PORTVERSION}
post-patch:
${RM} ${WRKSRC}/bin/add-user.sh.orig
do-build:
${RM} ${WRKSRC}/bin/*.bat
${RM} -rf ${WRKSRC}/bin/service

View file

@ -1,13 +1,33 @@
@owner www
@group www
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
@mode 644
%%APP_HOME%%/appclient/configuration/appclient.xml
%%APP_HOME%%/appclient/configuration/logging.properties
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
@mode
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
%%APP_HOME%%/bin/.jbossclirc
%%APP_HOME%%/bin/add-user.properties
%%APP_HOME%%/bin/add-user.sh
%%APP_HOME%%/bin/add-user.sh.orig
%%APP_HOME%%/bin/appclient.conf
%%APP_HOME%%/bin/appclient.sh
%%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt
@ -263,16 +283,6 @@
%%APP_HOME%%/docs/schema/wildfly-undertow_1_0.xsd
%%APP_HOME%%/docs/schema/wildfly-undertow_1_1.xsd
%%APP_HOME%%/docs/schema/wildfly-undertow_1_2.xsd
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
%%APP_HOME%%/domain/configuration/default-server-logging.properties
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/mgmt-groups.properties
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/jboss-modules.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-3.3.1.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
@ -1016,15 +1026,6 @@
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/java.sql.Driver
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/standalone.xml
%%APP_HOME%%/standalone/deployments/README.txt
%%APP_HOME%%/welcome-content/bkg.gif
%%APP_HOME%%/welcome-content/documentation.html
@ -1036,7 +1037,797 @@
%%APP_HOME%%/welcome-content/noredirect.html
%%APP_HOME%%/welcome-content/wildfly.css
%%APP_HOME%%/welcome-content/wildfly_logo.png
@dir %%APP_HOME%%/domain/data/content
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/welcome-content
@dir %%APP_HOME%%/standalone/tmp/auth
@dir %%APP_HOME%%/standalone/tmp
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/standalone/lib
@dir %%APP_HOME%%/standalone/deployments
@dir %%APP_HOME%%/standalone/configuration
@dir %%APP_HOME%%/standalone
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk
@dir %%APP_HOME%%/modules/system/layers/base/sun
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security/manager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security/manager
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/security
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/jberet/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/jberet
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/extension
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering
@dir %%APP_HOME%%/modules/system/layers/base/org/wildfly
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/idm
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/federation
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/core
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/config/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/config
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/common
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api
@dir %%APP_HOME%%/modules/system/layers/base/org/omg
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke
@dir %%APP_HOME%%/modules/system/layers/base/org/jsoup/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jsoup
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time/main
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time
@dir %%APP_HOME%%/modules/system/layers/base/org/joda
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/META-INF
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/timers
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jberet
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist/main
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/query
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/directory/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene/directory
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/lucene
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/stomp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/stomp
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/amqp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol/amqp
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/protocol
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/search
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/hql/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/hql
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/3
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax
@dir %%APP_HOME%%/modules/system/layers/base/org/glassfish
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence
@dir %%APP_HOME%%/modules/system/layers/base/org/eclipse
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus
@dir %%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main
@dir %%APP_HOME%%/modules/system/layers/base/org/bouncycastle
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/qpid
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/openjpa
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/lucene
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/avro/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/avro
@dir %%APP_HOME%%/modules/system/layers/base/org/apache
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr
@dir %%APP_HOME%%/modules/system/layers/base/org
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom/main
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom
@dir %%APP_HOME%%/modules/system/layers/base/nu
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip/main
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip
@dir %%APP_HOME%%/modules/system/layers/base/net
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/websocket
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth
@dir %%APP_HOME%%/modules/system/layers/base/javax/security
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee
@dir %%APP_HOME%%/modules/system/layers/base/javax/management
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws
@dir %%APP_HOME%%/modules/system/layers/base/javax/json/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/json/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/json
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/el
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/batch
@dir %%APP_HOME%%/modules/system/layers/base/javax/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation
@dir %%APP_HOME%%/modules/system/layers/base/javax
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api
@dir %%APP_HOME%%/modules/system/layers/base/javaee
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/websocket
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/servlet
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/core/main
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow/core
@dir %%APP_HOME%%/modules/system/layers/base/io/undertow
@dir %%APP_HOME%%/modules/system/layers/base/io/netty/main
@dir %%APP_HOME%%/modules/system/layers/base/io/netty
@dir %%APP_HOME%%/modules/system/layers/base/io
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk
@dir %%APP_HOME%%/modules/system/layers/base/ibm
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt/main
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt
@dir %%APP_HOME%%/modules/system/layers/base/gnu
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel
@dir %%APP_HOME%%/modules/system/layers/base/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava/main
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava
@dir %%APP_HOME%%/modules/system/layers/base/com/google
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng
@dir %%APP_HOME%%/modules/system/layers/base/com/github
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate
@dir %%APP_HOME%%/modules/system/layers/base/com/fasterxml
@dir %%APP_HOME%%/modules/system/layers/base/com
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos
@dir %%APP_HOME%%/modules/system/layers/base/ch
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm/main
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm
@dir %%APP_HOME%%/modules/system/layers/base/asm
@dir %%APP_HOME%%/modules/system/layers/base
@dir %%APP_HOME%%/modules/system/layers
@dir %%APP_HOME%%/modules/system
@dir %%APP_HOME%%/modules
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/domain/tmp
@dir %%APP_HOME%%/domain/data/content
@dir %%APP_HOME%%/domain/data
@dir %%APP_HOME%%/domain/configuration
@dir %%APP_HOME%%/domain
@dir %%APP_HOME%%/docs/schema
@dir %%APP_HOME%%/docs/examples/configs
@dir %%APP_HOME%%/docs/examples
@dir %%APP_HOME%%/docs
@dir %%APP_HOME%%/bin/client
@dir %%APP_HOME%%/bin
@dir %%APP_HOME%%/appclient/configuration
@dir %%APP_HOME%%/appclient

View file

@ -20,7 +20,8 @@ GROUP= www
VAR_DIR?= /var
LOG_DIR?= ${VAR_DIR}/log/${PORTNAME}
PID_FILE= ${VAR_DIR}/run/${PORTNAME}.pid
WILDFLY_VERSION=9.0.0.Alpha1
WILDFLY_VERSION=9.0.0.CR1
SUB_FILES= pkg-message
SUB_LIST= APP_SHORTNAME=${PORTNAME} \
LOG_DIR=${LOG_DIR} \
@ -30,8 +31,12 @@ SUB_LIST= APP_SHORTNAME=${PORTNAME} \
APP_HOME=${PREFIX}/wildfly-${PORTVERSION}
PLIST_SUB= APP_HOME=wildfly-${PORTVERSION}
post-patch:
${RM} ${WRKSRC}/bin/add-user.sh.orig
do-build:
${RM} ${WRKSRC}/bin/*.bat
${RM} ${WRKSRC}/bin/*.ps1
${RM} -rf ${WRKSRC}/bin/service
${RM} -rf ${WRKSRC}/bin/init.d

View file

@ -1,2 +1,2 @@
SHA256 (wildfly-9.0.0.Alpha1.tar.gz) = ed97f8108be07254c01217dd37679c21a0eab81ebc1aef0b233bfb9d16be8cd3
SIZE (wildfly-9.0.0.Alpha1.tar.gz) = 122289625
SHA256 (wildfly-9.0.0.CR1.tar.gz) = c07409743d3ff64faf29bddda0aaf60b832c3ecb2b1ee11f6531dbc47e3b3371
SIZE (wildfly-9.0.0.CR1.tar.gz) = 131932835

View file

@ -1,6 +1,6 @@
To make WildFly bind to all interfaces add this to rc.conf:
wildfly81_args="-Djboss.bind.address=0.0.0.0"
wildfly90_args="-Djboss.bind.address=0.0.0.0"
See
@ -12,4 +12,4 @@ To change JVM args, edit appropriate standalone.conf.
To add the initial admin user:
${PREFIX}/wildfly-9.0.0/bin/add-user.sh
%%LOCALBASE%%/wildfly-9.0.0/bin/add-user.sh

File diff suppressed because it is too large Load diff