# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # wildfly15 # wildfly15/pkg-descr # wildfly15/distinfo # wildfly15/Makefile # wildfly15/files # wildfly15/files/wildfly15.in # wildfly15/files/pkg-message.in # wildfly15/pkg-plist # echo c - wildfly15 mkdir -p wildfly15 > /dev/null 2>&1 echo x - wildfly15/pkg-descr sed 's/^X//' >wildfly15/pkg-descr << '992bc352a83f5fd71bb57d025df3427a' XWildFly is a flexible, lightweight, managed application Xruntime that helps you build amazing applications. XWildFly - new name for JBoss Application Server X XFast Startup XSmall Footprint XModular Design XUnified Configuration and Management X XAnd of course Java EE! X XWWW: http://wildfly.org 992bc352a83f5fd71bb57d025df3427a echo x - wildfly15/distinfo sed 's/^X//' >wildfly15/distinfo << 'd2b628c06c4e07b9cb386893854bf4d7' XTIMESTAMP = 1546557368 XSHA256 (wildfly-15.0.0.Final.tar.gz) = 52a41ca0e36dc41800214e6a8f4e0032276477299804e6a719ba1ffe35d37a92 XSIZE (wildfly-15.0.0.Final.tar.gz) = 179415348 d2b628c06c4e07b9cb386893854bf4d7 echo x - wildfly15/Makefile sed 's/^X//' >wildfly15/Makefile << '0b8c44707dfb00585edbf73ab946a474' X# $FreeBSD: head/java/wildfly15/Makefile 483171 2019-01-03 18:14:56Z pi $ X XPORTNAME= wildfly15 XPORTVERSION= 15.0.0 XCATEGORIES= java www XMASTER_SITES= http://download.jboss.org/wildfly/${WILDFLY_VERSION}/ XDISTNAME= wildfly-${WILDFLY_VERSION} X XMAINTAINER= reig.simeo@gmail.com XCOMMENT= Replacement for JBoss Application Server X XLICENSE= GPLv2 X XUSE_RC_SUBR= wildfly15 XUSE_JAVA= yes XJAVA_VERSION= 1.8+ XUSER= www XGROUP= www XVAR_DIR?= /var XLOG_DIR?= ${VAR_DIR}/log/${PORTNAME} XPID_FILE= ${VAR_DIR}/run/${PORTNAME}.pid XWILDFLY_VERSION=${PORTVERSION}.Final XSUB_FILES= pkg-message X XSUB_LIST= APP_SHORTNAME=${PORTNAME} \ X LOG_DIR=${LOG_DIR} \ X USER=${USER} \ X GROUP=${GROUP} \ X PID_FILE=${PID_FILE} \ X APP_HOME=${PREFIX}/${PORTNAME} XPLIST_SUB= APP_HOME=${PORTNAME} X XCONFIG_FILES= appclient/configuration/appclient.xml \ X appclient/configuration/logging.properties \ X domain/configuration/application-roles.properties \ X domain/configuration/application-users.properties \ X domain/configuration/default-server-logging.properties \ X domain/configuration/domain.xml \ X domain/configuration/host-master.xml \ X domain/configuration/host-slave.xml \ X domain/configuration/host.xml \ X domain/configuration/logging.properties \ X domain/configuration/mgmt-groups.properties \ X domain/configuration/mgmt-users.properties \ X standalone/configuration/application-roles.properties \ X standalone/configuration/application-users.properties \ X standalone/configuration/logging.properties \ X standalone/configuration/mgmt-groups.properties \ X standalone/configuration/mgmt-users.properties \ X standalone/configuration/standalone-full-ha.xml \ X standalone/configuration/standalone-full.xml \ X standalone/configuration/standalone-ha.xml \ X standalone/configuration/standalone-load-balancer.xml \ X standalone/configuration/standalone.xml X Xdo-build: X ${RM} ${WRKSRC}/bin/*.bat X ${RM} ${WRKSRC}/bin/*.ps1 X Xdo-install: X ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME} X (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${PORTNAME}) X ${RMDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}/.installation X.for FILE in ${CONFIG_FILES} X ${MV} ${STAGEDIR}${PREFIX}/${PORTNAME}/${FILE} \ X ${STAGEDIR}${PREFIX}/${PORTNAME}/${FILE}.sample X.endfor X X.include 0b8c44707dfb00585edbf73ab946a474 echo c - wildfly15/files mkdir -p wildfly15/files > /dev/null 2>&1 echo x - wildfly15/files/wildfly15.in sed 's/^X//' >wildfly15/files/wildfly15.in << '2565454326c07489bb937c91b442a4a1' X#!/bin/sh X# X# %%APP_SHORTNAME%% startup script. X# X# $FreeBSD: head/java/wildfly14/files/wildfly14.in 483171 2018-10-27 19:33:56Z pi $ X X# PROVIDE: %%APP_SHORTNAME%% X# REQUIRE: NETWORKING SERVERS X# KEYWORD: shutdown X X# Add the following lines to /etc/rc.conf to enable %%APP_SHORTNAME%%: X# %%APP_SHORTNAME%%_enable (bool): Set to "YES" to enable %%APP_SHORTNAME%% X# %%APP_SHORTNAME%%_args (str): Optional arguments to OAJBoss X# %%APP_SHORTNAME%%_log_stdout (str) JBoss log output stdout, filename. X# %%APP_SHORTNAME%%_log_stderr (str) JBoss log output stderr, filename. X# X X. /etc/rc.subr X Xname="%%APP_SHORTNAME%%" Xrcvar=%%APP_SHORTNAME%%_enable Xextra_commands="status" X Xload_rc_config $name X X%%APP_SHORTNAME%%_logdir="%%LOG_DIR%%" X%%APP_SHORTNAME%%_enable="${%%APP_SHORTNAME%%_enable:-"NO"}" X%%APP_SHORTNAME%%_log_stdout="${%%APP_SHORTNAME%%_log_stdout:-"${%%APP_SHORTNAME%%_logdir}/log"}" X%%APP_SHORTNAME%%_log_stderr="${%%APP_SHORTNAME%%_log_stderr:-"${%%APP_SHORTNAME%%_logdir}/error"}" X%%APP_SHORTNAME%%_args="${%%APP_SHORTNAME%%_args:-""}" X%%APP_SHORTNAME%%_sleep="${%%APP_SHORTNAME%%_sleep:-"5"}" X%%APP_SHORTNAME%%_kill9="${%%APP_SHORTNAME%%_kill9:-""}" X%%APP_SHORTNAME%%_additional_killall="${%%APP_SHORTNAME%%_additional_killall:-""}" X%%APP_SHORTNAME%%_user="%%USER%%" X%%APP_SHORTNAME%%_group="%%GROUP%%" X Xstart_cmd="%%APP_SHORTNAME%%_start" Xstop_cmd="%%APP_SHORTNAME%%_stop" Xpidfile="%%PID_FILE%%" Xstatus_cmd="%%APP_SHORTNAME%%_status" X XWILDFLY_HOME="%%APP_HOME%%" X#minimal requirements must be set for our javavmwrapper XJAVA_VERSION="1.8+" Xexport JAVA_VERSION X X%%APP_SHORTNAME%%_start () X{ X if [ ! -d "${%%APP_SHORTNAME%%_logdir}" ] X then X install -d -o ${%%APP_SHORTNAME%%_user} ${%%APP_SHORTNAME%%_logdir} X fi X X echo "%%APP_SHORTNAME%%: making sure all writeable dirs belong to proper user/group" X chown -R ${%%APP_SHORTNAME%%_user}:${%%APP_SHORTNAME%%_group} ${WILDFLY_HOME}/standalone X echo "Starting %%APP_SHORTNAME%%." X daemon -u ${%%APP_SHORTNAME%%_user} ${WILDFLY_HOME}/bin/standalone.sh ${%%APP_SHORTNAME%%_args} >> ${%%APP_SHORTNAME%%_log_stdout} 2>> ${%%APP_SHORTNAME%%_log_stderr} X X sleep ${%%APP_SHORTNAME%%_sleep} # let daemon(8) and sh(1) finish before executing pgrep(1) X pgrep -U ${%%APP_SHORTNAME%%_user} -f ${WILDFLY_HOME}/modules > ${pidfile} X chown ${%%APP_SHORTNAME%%_user} $pidfile X} X X%%APP_SHORTNAME%%_stop () X{ X # Subvert the check_pid_file procname check. X if [ -f ${pidfile} ] X then X kill `cat ${pidfile}` X # Only if we aware that our setup can hangs, and only after trying simple kill, we can kill it hard way. X if [ ! -z "${%%APP_SHORTNAME%%_kill9}" ] X then X sleep ${%%APP_SHORTNAME%%_sleep} X kill -9 `cat ${pidfile}` X fi X # In some setups, JBoss can spawn some child processess, which could prevent it from stopping, and freeing net ports. X # Let's blindly kill them all, since we are really know what we are doing. X if [ ! -z "${%%APP_SHORTNAME%%_additional_killall}" ] X then X sleep ${%%APP_SHORTNAME%%_sleep} X killall ${%%APP_SHORTNAME%%_additional_killall} X fi X rm ${pidfile} X fi X} X X%%APP_SHORTNAME%%_status () X{ X # If running, show pid X if [ -f ${pidfile} ] X then X echo "%%APP_SHORTNAME%% is running as pid" `cat ${pidfile}` X else X echo "%%APP_SHORTNAME%% is not running" X fi X} X Xrun_rc_command "$1" 2565454326c07489bb937c91b442a4a1 echo x - wildfly15/files/pkg-message.in sed 's/^X//' >wildfly15/files/pkg-message.in << 'd7dfee26f8ec1c2d27b44461133bf0b3' XTo make WildFly bind to all interfaces add this to rc.conf: X X%%APP_SHORTNAME%%_args="-Djboss.bind.address=0.0.0.0" X XSee X X https://community.jboss.org/wiki/JBossProperties X Xfor additional startup properties. X XTo change JVM args, edit appropriate standalone.conf. X XTo add the initial admin user: X X%%APP_HOME%%/bin/add-user.sh d7dfee26f8ec1c2d27b44461133bf0b3 echo x - wildfly15/pkg-plist sed 's/^X//' >wildfly15/pkg-plist << 'f27bc3fb513a3367697e305bc120421e' X@owner www X@group www X@mode 600 X@sample %%APP_HOME%%/appclient/configuration/appclient.xml.sample X@sample %%APP_HOME%%/appclient/configuration/logging.properties.sample X@sample %%APP_HOME%%/domain/configuration/application-roles.properties.sample X@sample %%APP_HOME%%/domain/configuration/application-users.properties.sample X@sample %%APP_HOME%%/domain/configuration/default-server-logging.properties.sample X@sample %%APP_HOME%%/domain/configuration/domain.xml.sample X@sample %%APP_HOME%%/domain/configuration/host-master.xml.sample X@sample %%APP_HOME%%/domain/configuration/host-slave.xml.sample X@sample %%APP_HOME%%/domain/configuration/host.xml.sample X@sample %%APP_HOME%%/domain/configuration/logging.properties.sample X@sample %%APP_HOME%%/domain/configuration/mgmt-groups.properties.sample X@sample %%APP_HOME%%/domain/configuration/mgmt-users.properties.sample X@sample %%APP_HOME%%/standalone/configuration/application-roles.properties.sample X@sample %%APP_HOME%%/standalone/configuration/application-users.properties.sample X@sample %%APP_HOME%%/standalone/configuration/logging.properties.sample X@sample %%APP_HOME%%/standalone/configuration/mgmt-groups.properties.sample X@sample %%APP_HOME%%/standalone/configuration/mgmt-users.properties.sample X@sample %%APP_HOME%%/standalone/configuration/standalone-full-ha.xml.sample X@sample %%APP_HOME%%/standalone/configuration/standalone-full.xml.sample X@sample %%APP_HOME%%/standalone/configuration/standalone-ha.xml.sample X@sample %%APP_HOME%%/standalone/configuration/standalone-load-balancer.xml.sample X@sample %%APP_HOME%%/standalone/configuration/standalone.xml.sample X@mode 700 X@dir %%APP_HOME%%/.galleon/hashes/.installation X@dir %%APP_HOME%%/.galleon/hashes/.well-known/acme-challenge X@dir %%APP_HOME%%/.galleon/hashes/standalone/lib/ext X@dir %%APP_HOME%%/.galleon/hashes/standalone/lib X@dir %%APP_HOME%%/.galleon/hashes/standalone/tmp/auth X@dir %%APP_HOME%%/.galleon/hashes/standalone/tmp X@dir %%APP_HOME%%/.galleon/hashes/standalone X@dir %%APP_HOME%%/.galleon/hashes/domain/tmp/auth X@dir %%APP_HOME%%/.galleon/hashes/domain/tmp X@dir %%APP_HOME%%/.galleon/hashes/domain X@dir %%APP_HOME%%/.well-known/acme-challenge X@dir %%APP_HOME%%/standalone/lib/ext X@dir %%APP_HOME%%/standalone/lib X@dir %%APP_HOME%%/standalone/deployments X@dir %%APP_HOME%%/standalone/configuration X@dir %%APP_HOME%%/standalone/tmp/auth X@dir %%APP_HOME%%/standalone/tmp X@dir %%APP_HOME%%/standalone X@dir %%APP_HOME%%/domain/tmp/auth X@dir %%APP_HOME%%/domain/tmp X@dir %%APP_HOME%%/domain/configuration X@dir %%APP_HOME%%/domain X@dir %%APP_HOME%%/appclient/configuration X@dir %%APP_HOME%%/appclient X@owner X@group X@mode X%%APP_HOME%%/.galleon/provisioned.xml X%%APP_HOME%%/.galleon/provisioning.xml X%%APP_HOME%%/LICENSE.txt X%%APP_HOME%%/README.txt X%%APP_HOME%%/bin/.jbossclirc X%%APP_HOME%%/bin/add-user.properties X%%APP_HOME%%/bin/appclient.conf X%%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt X%%APP_HOME%%/bin/client/README-EJB-JMS.txt X%%APP_HOME%%/bin/client/jboss-cli-client.jar X%%APP_HOME%%/bin/client/jboss-client.jar X%%APP_HOME%%/bin/domain.conf X%%APP_HOME%%/bin/jboss-cli-logging.properties X%%APP_HOME%%/bin/jboss-cli.xml X%%APP_HOME%%/bin/launcher.jar X%%APP_HOME%%/bin/product.conf X%%APP_HOME%%/bin/standalone.conf X@(,,555) %%APP_HOME%%/bin/add-user.sh X@(,,555) %%APP_HOME%%/bin/appclient.sh X@(,,555) %%APP_HOME%%/bin/common.sh X@(,,555) %%APP_HOME%%/bin/domain.sh X@(,,555) %%APP_HOME%%/bin/elytron-tool.sh X@(,,555) %%APP_HOME%%/bin/jboss-cli.sh X@(,,555) %%APP_HOME%%/bin/jconsole.sh X@(,,555) %%APP_HOME%%/bin/jdr.sh X@(,,555) %%APP_HOME%%/bin/standalone.sh X@(,,555) %%APP_HOME%%/bin/vault.sh X@(,,555) %%APP_HOME%%/bin/wsconsume.sh X@(,,555) %%APP_HOME%%/bin/wsprovide.sh X%%APP_HOME%%/bin/wildfly-elytron-tool.jar X%%APP_HOME%%/copyright.txt X%%APP_HOME%%/.galleon/hashes/appclient/configuration/hashes X%%APP_HOME%%/.galleon/hashes/bin/client/hashes X%%APP_HOME%%/.galleon/hashes/bin/hashes X%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/hashes X%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/init.d/hashes X%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/service/amd64/hashes X%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/service/hashes X%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/systemd/hashes X%%APP_HOME%%/.galleon/hashes/docs/examples/configs/hashes X%%APP_HOME%%/.galleon/hashes/docs/examples/hashes X%%APP_HOME%%/.galleon/hashes/docs/licenses/hashes X%%APP_HOME%%/.galleon/hashes/docs/schema/hashes X%%APP_HOME%%/.galleon/hashes/domain/configuration/hashes X%%APP_HOME%%/.galleon/hashes/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/asm/asm/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/ch/qos/cal10n/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/classmate/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/ben-manes/caffeine/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/jackson-coreutils/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/json-patch/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/relaxng/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/spullara/mustache/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/code/gson/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/guava/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/googlecode/javaewah/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/h2database/h2/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/jcraft/jsch/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/jcraft/jzlib/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/microsoft/azure/storage/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/squareup/okhttp3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/istack/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/jsf-impl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/bind/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/fastinfoset/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/messaging/saaj/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/txw2/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xsom/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/gnu/getopt/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/ibm/jdk/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/agroal/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/jaegertracing/jaeger/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/contrib/opentracing-concurrent/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/contrib/opentracing-jaxrs2/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/contrib/opentracing-tracerresolver/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/contrib/opentracing-web-servlet-filter/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/opentracing-api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/opentracing-noop/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentracing/opentracing-util/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/config/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/health/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/metrics/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/opentracing/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/js/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/jsp/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/servlet/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/websocket/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javaee/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/activation/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/annotation/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/batch/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/ejb/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/el/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/enterprise/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/enterprise/concurrent/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/faces/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/inject/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/interceptor/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/jms/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/json/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/json/bind/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/jws/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/mail/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/management/j2ee/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/orb/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/persistence/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/resource/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/rmi/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/auth/message/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/enterprise/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/jacc/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/jsp/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/jstl/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/sql/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/transaction/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/validation/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/websocket/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/ws/rs/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/wsdl4j/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/bind/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/rpc/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/soap/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/stream/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/ws/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/net/bytebuddy/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/net/jcip/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/nu/xom/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/aesh/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/antlr/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-i686/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-x86_64/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/ra/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/avro/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/beanutils/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/cli/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/codec/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/collections/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/io/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/lang/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/lang3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/logging/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/impl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/services-sts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/ws-security/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/httpcomponents/core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/httpcomponents/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/james/mime4j/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/log4j/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/lucene/internal/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/lucene/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/neethi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/openjpa/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/qpid/proton/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/santuario/xmlsec/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/thrift/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/velocity/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/ws/security/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/ws/xmlschema/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/xalan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/xerces/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/xml-resolver/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/jettison/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/woodstox/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/dom4j/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/jdt/ecj/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/jgit/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/config/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/health/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/metrics/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/opentracing/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/restclient/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/persistence/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/yasson/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/fusesource/jansi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/javax/el/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/javax/json/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/soteria/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/4.1/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/4.3/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/5.0/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/5.3/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/bytecodetransformer/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/commons-annotations/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/envers/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/backend-jms/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/engine/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/orm/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/serialization-avro/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/validator/cdi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/validator/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hornetq/client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/cachestore/remote/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/client/hotrod/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/commons/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/hibernate-cache/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/persistence/jdbc/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/persistence/remote/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/javassist/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jaxen/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jberet/jberet-core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/appclient/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/cli/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/cmp/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/configadmin/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/connector/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/console/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/controller-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/controller/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/core-security-api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/core-security/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/deployment-repository/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/deployment-scanner/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-add-user/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-http-interface/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-management/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ee/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ejb3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ejb3/main/timers/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/host-controller/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jacorb/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jaxr/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jaxrs/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jdr/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jdr/main/resources/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jmx/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/hibernate/4/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/openjpa/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsf-injection/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsf/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsr77/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/logging/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/mail/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/management-client-content/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/messaging/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/modcluster/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/naming/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/network/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/patching/cli/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/patching/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/platform-mbean/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/pojo/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/process-controller/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/product/wildfly-full/dir/META-INF/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/product/wildfly-full/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/protocol/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/remoting/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/sar/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/security-api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/security/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/server/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/standalone/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/system-jmx/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/threads/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/transactions/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/vault-tool/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/version/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/web-common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/web/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/webservices/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/ejb/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/jpa/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/transactions/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/webservices/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/xts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/classfilewriter/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/common-beans/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/deployers/jboss-service-deployer/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/dmr/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ejb-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ejb/remote/protocol/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ejb3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/genericjms/main/META-INF/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/genericjms/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/iiop-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/integration/ext-content/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/invocation/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/impl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jandex/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jaxbintros/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jts/integration/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/log4j/logmanager/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/commons/logging/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logmanager/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/marshalling/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/marshalling/river/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/appclient/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/ear/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/ejb/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/web/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/msc/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/compensations/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/rts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/txframework/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remote-naming/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting-jmx/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting3/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/security/negotiation/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/security/xacml/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/staxmapper/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/stdio/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/threads/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/vfs/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/probe/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/sts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/jaxws-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/saaj-impl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/nio/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jdom/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/azure/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/kubernetes/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/joda/time/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jsoup/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/omg/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/opensaml/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketbox/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/config/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/core/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/core/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/federation/bindings/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/federation/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/idm/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/idm/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/idm/schema/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/picketlink/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/projectodd/vdx/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/reactivestreams/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/slf4j/ext/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/slf4j/impl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/slf4j/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/client/config/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/ee/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/ee/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/ejb/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/infinispan/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/jgroups/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/jgroups/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/marshalling/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/marshalling/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/marshalling/jboss/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/marshalling/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/server/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/service/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/singleton/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/web/api/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/web/infinispan/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/web/spi/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/clustering/web/undertow/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/discovery/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/embedded/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/batch/jberet/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/bean-validation/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/clustering/singleton/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/core-management-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/core-management/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/datasources-agroal/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/discovery/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/ee-security/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/elytron/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/io/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/messaging-activemq/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/microprofile/config-smallrye/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/microprofile/health-smallrye/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/microprofile/metrics-smallrye/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/microprofile/opentracing-smallrye/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/mod_cluster/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/picketlink/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/request-controller/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/rts/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/security/manager/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/extension/undertow/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/http-client/common/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/http-client/ejb/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/http-client/naming/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/http-client/transaction/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/iiop-openjdk/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/microprofile/opentracing-smallrye/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/mod_cluster/undertow/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/naming-client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/naming/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/linux-i386/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/linux-x86_64/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/macosx-x86_64/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/solaris-x86_64/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/win-i686/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/openssl/main/lib/win-x86_64/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/security/elytron-private/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server-servlet/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/security/elytron/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/security/manager/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/wildfly/transaction/client/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/yaml/snakeyaml/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/jdk/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/scripting/main/hashes X%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/scripting/main/service-loader-resources/META-INF/services/hashes X%%APP_HOME%%/.galleon/hashes/standalone/configuration/hashes X%%APP_HOME%%/.galleon/hashes/standalone/deployments/hashes X%%APP_HOME%%/.galleon/hashes/welcome-content/hashes X%%APP_HOME%%/docs/contrib/scripts/README.md X%%APP_HOME%%/docs/contrib/scripts/init.d/wildfly-init-debian.sh X%%APP_HOME%%/docs/contrib/scripts/init.d/wildfly-init-redhat.sh X%%APP_HOME%%/docs/contrib/scripts/init.d/wildfly.conf X%%APP_HOME%%/docs/contrib/scripts/service/amd64/wildfly-service.exe X%%APP_HOME%%/docs/contrib/scripts/service/service.bat X%%APP_HOME%%/docs/contrib/scripts/service/wildfly-mgr.exe X%%APP_HOME%%/docs/contrib/scripts/service/wildfly-service.exe X%%APP_HOME%%/docs/contrib/scripts/systemd/README X%%APP_HOME%%/docs/contrib/scripts/systemd/launch.sh X%%APP_HOME%%/docs/contrib/scripts/systemd/wildfly.conf X%%APP_HOME%%/docs/contrib/scripts/systemd/wildfly.service X%%APP_HOME%%/docs/examples/configs/domain-ec2.xml X%%APP_HOME%%/docs/examples/configs/standalone-activemq-colocated.xml X%%APP_HOME%%/docs/examples/configs/standalone-azure-full-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-azure-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-ec2-full-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-ec2-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-genericjms.xml X%%APP_HOME%%/docs/examples/configs/standalone-gossip-full-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-gossip-ha.xml X%%APP_HOME%%/docs/examples/configs/standalone-jts.xml X%%APP_HOME%%/docs/examples/configs/standalone-minimalistic.xml X%%APP_HOME%%/docs/examples/configs/standalone-picketlink.xml X%%APP_HOME%%/docs/examples/configs/standalone-rts.xml X%%APP_HOME%%/docs/examples/configs/standalone-xts.xml X%%APP_HOME%%/docs/examples/enable-elytron.cli X%%APP_HOME%%/docs/licenses/apache license 2.0.txt X%%APP_HOME%%/docs/licenses/bsd 3-clause new or revised license.html X%%APP_HOME%%/docs/licenses/bsd 3-clause no nuclear license.html X%%APP_HOME%%/docs/licenses/common development and distribution license 1.0.txt X%%APP_HOME%%/docs/licenses/common development and distribution license 1.1.txt X%%APP_HOME%%/docs/licenses/common public license 1.0.txt X%%APP_HOME%%/docs/licenses/core-feature-pack-licenses.html X%%APP_HOME%%/docs/licenses/core-feature-pack-licenses.xml X%%APP_HOME%%/docs/licenses/creative commons attribution 2.5.html X%%APP_HOME%%/docs/licenses/creative commons zero v1.0 universal.txt X%%APP_HOME%%/docs/licenses/eclipse distribution license, version 1.0.txt X%%APP_HOME%%/docs/licenses/eclipse public license 1.0.txt X%%APP_HOME%%/docs/licenses/fsf all permissive license.html X%%APP_HOME%%/docs/licenses/full-feature-pack-licenses.html X%%APP_HOME%%/docs/licenses/full-feature-pack-licenses.xml X%%APP_HOME%%/docs/licenses/gnu general public license v2.0 only, with classpath exception.txt X%%APP_HOME%%/docs/licenses/gnu general public license v2.0 only.html X%%APP_HOME%%/docs/licenses/gnu general public license, version 2 with the classpath exception.txt X%%APP_HOME%%/docs/licenses/gnu lesser general public license v2.1 only.txt X%%APP_HOME%%/docs/licenses/gnu lesser general public license v2.1 or later.txt X%%APP_HOME%%/docs/licenses/gnu lesser general public license v3.0 only.txt X%%APP_HOME%%/docs/licenses/gnu lesser general public license v3.0 or later.txt X%%APP_HOME%%/docs/licenses/gnu library general public license v2 only.txt X%%APP_HOME%%/docs/licenses/indiana university extreme lab software license 1.1.1.html X%%APP_HOME%%/docs/licenses/licenses.css X%%APP_HOME%%/docs/licenses/licenses.html X%%APP_HOME%%/docs/licenses/licenses.xml X%%APP_HOME%%/docs/licenses/licenses.xsl X%%APP_HOME%%/docs/licenses/mit license.txt X%%APP_HOME%%/docs/licenses/mozilla public license 1.1.txt X%%APP_HOME%%/docs/licenses/mozilla public license 2.0.html X%%APP_HOME%%/docs/licenses/plexus classworlds license.html X%%APP_HOME%%/docs/licenses/public domain.txt X%%APP_HOME%%/docs/licenses/servlet-feature-pack-licenses.html X%%APP_HOME%%/docs/licenses/servlet-feature-pack-licenses.xml X%%APP_HOME%%/docs/licenses/the antlr 2.7.7 license.txt X%%APP_HOME%%/docs/licenses/the asm bsd license.txt X%%APP_HOME%%/docs/licenses/the bsd license.txt X%%APP_HOME%%/docs/licenses/the jsoup mit license.html X%%APP_HOME%%/docs/schema/application-client_6.xsd X%%APP_HOME%%/docs/schema/application-client_7.xsd X%%APP_HOME%%/docs/schema/application-client_8.xsd X%%APP_HOME%%/docs/schema/application_1_4.xsd X%%APP_HOME%%/docs/schema/application_5.xsd X%%APP_HOME%%/docs/schema/application_6.xsd X%%APP_HOME%%/docs/schema/application_7.xsd X%%APP_HOME%%/docs/schema/application_8.xsd X%%APP_HOME%%/docs/schema/batch-jberet_1_0.xsd X%%APP_HOME%%/docs/schema/discovery-1_0.xsd X%%APP_HOME%%/docs/schema/ejb-jar_2_1.xsd X%%APP_HOME%%/docs/schema/ejb-jar_3_0.xsd X%%APP_HOME%%/docs/schema/ejb-jar_3_1.xsd X%%APP_HOME%%/docs/schema/ejb-jar_3_2.xsd X%%APP_HOME%%/docs/schema/elytron-1_0.xsd X%%APP_HOME%%/docs/schema/elytron-1_0_1.xsd X%%APP_HOME%%/docs/schema/elytron-client-1_1.xsd X%%APP_HOME%%/docs/schema/elytron-client-1_2.xsd X%%APP_HOME%%/docs/schema/j2ee_1_4.xsd X%%APP_HOME%%/docs/schema/j2ee_jaxrpc_mapping_1_1.xsd X%%APP_HOME%%/docs/schema/j2ee_web_services_1_1.xsd X%%APP_HOME%%/docs/schema/j2ee_web_services_client_1_1.xsd X%%APP_HOME%%/docs/schema/java-properties_1_0.xsd X%%APP_HOME%%/docs/schema/javaee_5.xsd X%%APP_HOME%%/docs/schema/javaee_6.xsd X%%APP_HOME%%/docs/schema/javaee_7.xsd X%%APP_HOME%%/docs/schema/javaee_8.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_1_2.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_1_3.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_1_4.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_client_1_2.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_client_1_3.xsd X%%APP_HOME%%/docs/schema/javaee_web_services_client_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-app_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-app_7_1.xsd X%%APP_HOME%%/docs/schema/jboss-app_8_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-cli_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-cli_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-cli_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-cli_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-cli_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-cmp_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-cmp_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_6.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_7.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_1_8.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_2_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-config_2_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-datasources_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-datasources_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ee_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-ejb3_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-iiop-openjdk_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_5_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_6_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-infinispan_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-jacorb_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jaxr_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jaxr_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jaxrs_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jca_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jdr_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_5_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jgroups_6_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jmx_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jmx_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jmx_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-jmx_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-jpa_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jpa_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jsf_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-jsf_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-jsr77_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_5_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-logging_6_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mail_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mail_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-mail_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-messaging_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-naming_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-pojo_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-remoting_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-remoting_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-remoting_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-sar_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-security_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-security_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-security_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-threads_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-threads_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-txn_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_3.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_4.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_1_5.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_2_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-web_2_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-webservices_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-webservices_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-as-webservices_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-as-webservices_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-weld_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-weld_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-weld_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-weld_4_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-xts_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-xts_2_0.xsd X%%APP_HOME%%/docs/schema/jboss-as-xts_3_0.xsd X%%APP_HOME%%/docs/schema/jboss-client_6_0.xsd X%%APP_HOME%%/docs/schema/jboss-client_8_0.xsd X%%APP_HOME%%/docs/schema/jboss-common_5_1.xsd X%%APP_HOME%%/docs/schema/jboss-common_6_0.xsd X%%APP_HOME%%/docs/schema/jboss-common_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-common_7_1.xsd X%%APP_HOME%%/docs/schema/jboss-common_8_0.xsd X%%APP_HOME%%/docs/schema/jboss-deployment-dependencies-1_0.xsd X%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_0.xsd X%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_1.xsd X%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_2.xsd X%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_3.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-cache_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-client_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-client_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-client_1_2.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-clustering_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-container-interceptors_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-pool_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-resource-adapter-binding_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-security-role_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-security_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb-security_1_1.xsd X%%APP_HOME%%/docs/schema/jboss-ejb3-2_0.xsd X%%APP_HOME%%/docs/schema/jboss-ejb3-spec-2_0.xsd X%%APP_HOME%%/docs/schema/jboss-jpa_1_0.xsd X%%APP_HOME%%/docs/schema/jboss-pojo_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-remoting_5_0.xsd X%%APP_HOME%%/docs/schema/jboss-service_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_10_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_10_1.xsd X%%APP_HOME%%/docs/schema/jboss-web_11_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_11_1.xsd X%%APP_HOME%%/docs/schema/jboss-web_12_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_12_1.xsd X%%APP_HOME%%/docs/schema/jboss-web_13_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_7_0.xsd X%%APP_HOME%%/docs/schema/jboss-web_7_1.xsd X%%APP_HOME%%/docs/schema/jboss-web_7_2.xsd X%%APP_HOME%%/docs/schema/jboss-web_7_3.xsd X%%APP_HOME%%/docs/schema/jboss-web_8_0.xsd X%%APP_HOME%%/docs/schema/jboss-weld-1_0.xsd X%%APP_HOME%%/docs/schema/jboss-weld-1_1.xsd X%%APP_HOME%%/docs/schema/jbossws-jaxws-config_4_0.xsd X%%APP_HOME%%/docs/schema/jbossws-web-services_1_0.xsd X%%APP_HOME%%/docs/schema/jbxb_1_0.xsd X%%APP_HOME%%/docs/schema/jndi-binding-service_1_0.xsd X%%APP_HOME%%/docs/schema/jsp_2_0.xsd X%%APP_HOME%%/docs/schema/jsp_2_1.xsd X%%APP_HOME%%/docs/schema/jsp_2_2.xsd X%%APP_HOME%%/docs/schema/jsp_2_3.xsd X%%APP_HOME%%/docs/schema/module-1_0.xsd X%%APP_HOME%%/docs/schema/module-1_1.xsd X%%APP_HOME%%/docs/schema/module-1_2.xsd X%%APP_HOME%%/docs/schema/module-1_3.xsd X%%APP_HOME%%/docs/schema/module-1_5.xsd X%%APP_HOME%%/docs/schema/module-1_6.xsd X%%APP_HOME%%/docs/schema/module-1_7.xsd X%%APP_HOME%%/docs/schema/module-1_8.xsd X%%APP_HOME%%/docs/schema/orm_1_0.xsd X%%APP_HOME%%/docs/schema/persistence_1_0.xsd X%%APP_HOME%%/docs/schema/persistence_2_0.xsd X%%APP_HOME%%/docs/schema/shared-session-config_1_0.xsd X%%APP_HOME%%/docs/schema/singleton-deployment_1_0.xsd X%%APP_HOME%%/docs/schema/trans-timeout-1_0.xsd X%%APP_HOME%%/docs/schema/user-roles_1_0.xsd X%%APP_HOME%%/docs/schema/web-app_2_4.xsd X%%APP_HOME%%/docs/schema/web-app_2_5.xsd X%%APP_HOME%%/docs/schema/web-app_3_0.xsd X%%APP_HOME%%/docs/schema/web-app_3_1.xsd X%%APP_HOME%%/docs/schema/web-app_4_0.xsd X%%APP_HOME%%/docs/schema/web-common_3_0.xsd X%%APP_HOME%%/docs/schema/web-common_3_1.xsd X%%APP_HOME%%/docs/schema/web-common_4_0.xsd X%%APP_HOME%%/docs/schema/web-facelettaglibrary_2_2.xsd X%%APP_HOME%%/docs/schema/web-facelettaglibrary_2_3.xsd X%%APP_HOME%%/docs/schema/web-facesconfig_1_2.xsd X%%APP_HOME%%/docs/schema/web-facesconfig_2_2.xsd X%%APP_HOME%%/docs/schema/web-fragment_3_0.xsd X%%APP_HOME%%/docs/schema/web-fragment_3_1.xsd X%%APP_HOME%%/docs/schema/web-fragment_4_0.xsd X%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_0.xsd X%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_1.xsd X%%APP_HOME%%/docs/schema/web-partialresponse_2_2.xsd X%%APP_HOME%%/docs/schema/web-partialresponse_2_3.xsd X%%APP_HOME%%/docs/schema/wildfly-agroal_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-batch-jberet_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-batch-jberet_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-bean-validation_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-cli_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-cli_3_1.xsd X%%APP_HOME%%/docs/schema/wildfly-cli_3_2.xsd X%%APP_HOME%%/docs/schema/wildfly-cli_3_3.xsd X%%APP_HOME%%/docs/schema/wildfly-cli_3_4.xsd X%%APP_HOME%%/docs/schema/wildfly-client-ejb_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-client_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_4_1.xsd X%%APP_HOME%%/docs/schema/wildfly-config_4_2.xsd X%%APP_HOME%%/docs/schema/wildfly-config_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_6_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_7_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_8_0.xsd X%%APP_HOME%%/docs/schema/wildfly-config_9_0.xsd X%%APP_HOME%%/docs/schema/wildfly-core-management_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-datasources_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-datasources_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-datasources_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-datasources_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-discovery_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-ee-security_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-ejb-timer_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-ejb3_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-ejb3_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-ejb3_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_1_1.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_1_2.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-elytron_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-http-client_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-iiop-openjdk_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-iiop-openjdk_2_1.xsd X%%APP_HOME%%/docs/schema/wildfly-io_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-io_1_1.xsd X%%APP_HOME%%/docs/schema/wildfly-io_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-io_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-jca_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-jca_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-jca_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-jca_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-mail_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-mail_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq-deployment_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-microprofile-config-smallrye_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-microprofile-health-smallrye_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-microprofile-metrics-smallrye_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-microprofile-opentracing_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-federation_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-federation_1_1.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-federation_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-idm_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-idm_1_1.xsd X%%APP_HOME%%/docs/schema/wildfly-picketlink-idm_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-remoting_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-remoting_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-remoting_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-request-controller_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-resource-adapters_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-resource-adapters_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-resource-adapters_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-resource-adapters_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-rts_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-security-manager_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-security_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-singleton_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-threads_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-txn_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-txn_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-txn_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_1_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_1_1.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_1_2.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_2_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_3_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_3_1.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_4_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_5_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_6_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_7_0.xsd X%%APP_HOME%%/docs/schema/wildfly-undertow_8_0.xsd X%%APP_HOME%%/docs/schema/xml.xsd X%%APP_HOME%%/docs/schema/xnio_3_5.xsd X%%APP_HOME%%/jboss-modules.jar X%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-6.2.1.jar X%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-util-6.2.1.jar X%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml X%%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/cal10n-api-0.8.1.jar X%%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/classmate-1.3.4.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/jackson-annotations-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/jackson-core-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/jackson-databind-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/jackson-datatype-jdk8-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/jackson-datatype-jsr310-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-base-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-json-provider-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-module-jaxb-annotations-2.9.5.jar X%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/github/ben-manes/caffeine/main/caffeine-2.6.2.jar X%%APP_HOME%%/modules/system/layers/base/com/github/ben-manes/caffeine/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/github/fge/jackson-coreutils/main/jackson-coreutils-1.0.jar X%%APP_HOME%%/modules/system/layers/base/com/github/fge/jackson-coreutils/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/github/fge/json-patch/main/json-patch-1.3.jar X%%APP_HOME%%/modules/system/layers/base/com/github/fge/json-patch/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/relaxng-datatype-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/github/spullara/mustache/main/compiler-0.9.4.jar X%%APP_HOME%%/modules/system/layers/base/com/github/spullara/mustache/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/google/code/gson/main/gson-2.8.2.jar X%%APP_HOME%%/modules/system/layers/base/com/google/code/gson/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/guava-25.0-jre.jar X%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/googlecode/javaewah/main/JavaEWAH-1.1.6.jar X%%APP_HOME%%/modules/system/layers/base/com/googlecode/javaewah/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/h2-1.4.193.jar X%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/jcraft/jsch/main/jsch-0.1.54.jar X%%APP_HOME%%/modules/system/layers/base/com/jcraft/jsch/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/jcraft/jzlib/main/jzlib-1.1.1.jar X%%APP_HOME%%/modules/system/layers/base/com/jcraft/jzlib/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/azure-storage-6.1.0.jar X%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/okhttp-3.9.0.jar X%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/okio-1.13.0.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-runtime-3.0.7.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-tools-3.0.7.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/jsf-impl-2.3.5.SP2.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/codemodel-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-jxc-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-runtime-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-xjc-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/rngom-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main/FastInfoset-1.2.13.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main/saaj-impl-1.3.16-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main/txw2-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main/module.xml X%%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main/xsom-2.3.1.jar X%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/java-getopt-1.0.13.jar X%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/module.xml X%%APP_HOME%%/modules/system/layers/base/ibm/jdk/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-api-1.3.jar X%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-narayana-1.3.jar X%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-pool-1.3.jar X%%APP_HOME%%/modules/system/layers/base/io/agroal/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-core-0.30.6.jar X%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-thrift-0.30.6.jar X%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/netty/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/netty/main/netty-all-4.1.25.Final.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-concurrent/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-concurrent/main/opentracing-concurrent-0.1.0.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-jaxrs2/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-jaxrs2/main/opentracing-jaxrs2-0.1.7.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-tracerresolver/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-tracerresolver/main/opentracing-tracerresolver-0.1.5.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-web-servlet-filter/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/contrib/opentracing-web-servlet-filter/main/opentracing-web-servlet-filter-0.1.0.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-api/main/opentracing-api-0.31.0.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-noop/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-noop/main/opentracing-noop-0.31.0.jar X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-util/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/opentracing/opentracing-util/main/opentracing-util-0.31.0.jar X%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/rxjava-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/smallrye-config-1.3.4.jar X%%APP_HOME%%/modules/system/layers/base/io/smallrye/health/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/smallrye/health/main/smallrye-health-1.0.2.jar X%%APP_HOME%%/modules/system/layers/base/io/smallrye/metrics/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/smallrye/metrics/main/smallrye-metrics-1.1.2.jar X%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentracing/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentracing/main/smallrye-opentracing-1.1.1.jar X%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/undertow-core-2.0.15.Final.jar X%%APP_HOME%%/modules/system/layers/base/io/undertow/js/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/undertow/js/main/undertow-js-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/jastow-2.0.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/undertow-servlet-2.0.15.Final.jar X%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/module.xml X%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/undertow-websockets-jsr-2.0.15.Final.jar X%%APP_HOME%%/modules/system/layers/base/javaee/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/activation-1.1.1.jar X%%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/jboss-annotations-api_1.3_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/jboss-batch-api_1.0_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/jboss-ejb-api_3.2_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/jboss-el-api_3.0_spec-1.0.13.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/cdi-api-2.0.SP1.jar X%%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main/jboss-concurrency-api_1.0_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/jboss-jsf-api_2.3_spec-2.3.5.SP1.jar X%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/javax.inject-1.jar X%%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main/jboss-interceptors-api_1.2_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/jms/api/main/jboss-jms-api_2.0_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/jms/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/json/api/main/javax.json-api-1.1.2.jar X%%APP_HOME%%/modules/system/layers/base/javax/json/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/json/bind/api/main/javax.json.bind-api-1.0.jar X%%APP_HOME%%/modules/system/layers/base/javax/json/bind/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/jws/api/main/jsr181-api-1.0-MR1.jar X%%APP_HOME%%/modules/system/layers/base/javax/jws/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/mail/api/main/javax.mail-1.6.2.jar X%%APP_HOME%%/modules/system/layers/base/javax/mail/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/openjdk-orb-8.1.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/javax.persistence-api-2.2.jar X%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/jboss-connector-api_1.7_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main/jboss-jaspi-api_1.1_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/security/enterprise/api/main/javax.security.enterprise-api-1.0.jar X%%APP_HOME%%/modules/system/layers/base/javax/security/enterprise/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main/jboss-jacc-api_1.5_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/jboss-servlet-api_4.0_spec-1.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/jboss-jsp-api_2.3_spec-1.0.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/taglibs-standard-compat-1.2.6-RC1.jar X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/taglibs-standard-impl-1.2.6-RC1.jar X%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/taglibs-standard-spec-1.2.6-RC1.jar X%%APP_HOME%%/modules/system/layers/base/javax/sql/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/jboss-transaction-api_1.2_spec-1.1.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/validation-api-2.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/jboss-websocket-api_1.1_spec-1.1.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/jboss-jaxrs-api_2.1_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/wsdl4j-1.6.3.jar X%%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main/jboss-jaxb-api_2.3_spec-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/jboss-jaxws-api_2.3_spec-1.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/net/bytebuddy/main/byte-buddy-1.8.17.jar X%%APP_HOME%%/modules/system/layers/base/net/bytebuddy/main/module.xml X%%APP_HOME%%/modules/system/layers/base/net/jcip/main/jcip-annotations-1.0.jar X%%APP_HOME%%/modules/system/layers/base/net/jcip/main/module.xml X%%APP_HOME%%/modules/system/layers/base/nu/xom/main/module.xml X%%APP_HOME%%/modules/system/layers/base/nu/xom/main/xom-1.2.10.jar X%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-1.8.jar X%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-extensions-1.6.jar X%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-readline-1.11.jar X%%APP_HOME%%/modules/system/layers/base/org/aesh/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/antlr/main/antlr-2.7.7.jar X%%APP_HOME%%/modules/system/layers/base/org/antlr/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-commons-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-journal-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-native-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-i686/libartemis-native-32.so X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-x86_64/libartemis-native-64.so X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jdbc-store-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-client-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-server-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-service-extensions-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-tools-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-amqp-protocol-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/artemis-hornetq-protocol-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/artemis-stomp-protocol-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-ra-2.6.3.jbossorg-00014.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/avro/main/avro-1.7.6.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/avro/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/commons-beanutils-1.9.3.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/commons-cli-1.3.1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/commons-codec-1.10.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/commons-collections-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/commons-io-2.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/commons-lang-2.6.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/commons-lang3-3.6.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-features-clustering-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-bug986-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-runtime-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-3.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-core-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-rt-features-logging-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/cxf-services-sts-core-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/cxf-rt-ws-security-3.2.5-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpclient-4.5.4.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpcore-4.4.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpasyncclient-4.1.3.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpcore-nio-4.4.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpmime-4.5.4.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/apache-mime4j-0.6.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/internal/main/lucene-backward-codecs-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/internal/main/lucene-misc-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/internal/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-analyzers-common-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-core-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-facet-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-queries-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-queryparser-5.5.5.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/neethi-3.1.1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/jipijapa-openjpa-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/proton-j-0.27.3.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-2.1.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/thrift/main/libthrift-0.11.0.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/thrift/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/velocity-engine-core-2.0.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/jasypt-1.9.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-bindings-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-2.2.2.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/xmlschema-core-2.2.1.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/serializer-2.7.1.jbossorg-4.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/xalan-2.7.1.jbossorg-4.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main/xercesImpl-2.12.0.SP02.jar X%%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main/xml-resolver-1.2.jar X%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main/bcmail-jdk15on-1.60.jar X%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main/bcpkix-jdk15on-1.60.jar X%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main/bcprov-jdk15on-1.60.jar X%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main/jackson-core-asl-1.9.13.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main/jackson-jaxrs-1.9.13.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main/jackson-mapper-asl-1.9.13.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main/jackson-xc-1.9.13.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main/jettison-1.3.8.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/stax2-api-3.1.4.jar X%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/woodstox-core-5.0.3.jar X%%APP_HOME%%/modules/system/layers/base/org/dom4j/main/dom4j-2.1.1.jar X%%APP_HOME%%/modules/system/layers/base/org/dom4j/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/ecj-4.6.1.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/jgit/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/jgit/main/org.eclipse.jgit-5.0.2.201807311906-r.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/config/api/main/microprofile-config-api-1.3.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/config/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/health/api/main/microprofile-health-api-1.0.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/health/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/metrics/api/main/microprofile-metrics-api-1.1.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/metrics/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/opentracing/main/microprofile-opentracing-api-1.1.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/opentracing/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/microprofile-rest-client-api-1.0.1.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/yasson-1.0.2.jar X%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.16.jar X%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main/javax.el-impl-3.0.1-b08-jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/javax.enterprise.concurrent-1.0.jar X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main/javax.json-1.1.2.jar X%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/javax.security.enterprise-1.0.jar X%%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/jipijapa-hibernate4-1-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.3/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/5.0/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/5.3/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/bytecodetransformer/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/bytecodetransformer/main/wildfly-ormtransformer-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/hibernate-commons-annotations-5.0.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/jipijapa-hibernate4-3-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/jipijapa-hibernate5-3-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/jipijapa-hibernate5-3-legacy-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-legacy-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-5.3.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-5.3.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/hibernate-search-backend-jms-5.10.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/hibernate-search-engine-5.10.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/hibernate-search-orm-5.10.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/serialization-avro/main/hibernate-search-serialization-avro-5.10.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/serialization-avro/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/hibernate-validator-cdi-6.0.13.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-6.0.13.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-commons-2.4.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-core-client-2.4.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-jms-client-2.4.7.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/infinispan-commons-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-commons-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-spi-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-v53-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/infinispan-cachestore-jdbc-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/infinispan-cachestore-remote-9.4.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/javassist/main/javassist-3.23.1-GA.jar X%%APP_HOME%%/modules/system/layers/base/org/javassist/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jaxen/main/jaxen-1.1.6.jar X%%APP_HOME%%/modules/system/layers/base/org/jaxen/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/jberet-core-1.3.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/wildfly-appclient-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/wildfly-cli-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/wildfly-clustering-common-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/wildfly-clustering-infinispan-extension-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/wildfly-clustering-jgroups-extension-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/wildfly-cmp-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/wildfly-configadmin-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/wildfly-connector-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/hal-console-3.0.6.Final-resources.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/wildfly-controller-client-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/wildfly-controller-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/wildfly-core-security-api-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/wildfly-core-security-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/wildfly-deployment-repository-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/wildfly-deployment-scanner-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/wildfly-domain-http-error-context-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/wildfly-domain-http-interface-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/wildfly-domain-management-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/wildfly-ee-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/timers/timer-sql.properties X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/wildfly-ejb3-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/wildfly-host-controller-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/wildfly-jacorb-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/wildfly-jaxr-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/wildfly-jaxrs-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources/plugins.properties X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/wildfly-jdr-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/wildfly-jmx-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/wildfly-jpa-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jipijapa-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/weld-jsf-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/wildfly-jsf-injection-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/wildfly-jsf-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/wildfly-jsr77-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/wildfly-logging-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/wildfly-mail-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/wildfly-management-client-content-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/wildfly-messaging-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/wildfly-naming-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/wildfly-network-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/wildfly-patching-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/wildfly-platform-mbean-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/wildfly-pojo-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/wildfly-process-controller-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/wildfly-full/dir/META-INF/MANIFEST.MF X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/wildfly-full/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/wildfly-protocol-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/wildfly-remoting-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/wildfly-sar-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/wildfly-security-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/wildfly-security-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/wildfly-system-jmx-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/wildfly-threads-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/wildfly-transactions-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/wildfly-version-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/wildfly-web-common-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/wildfly-web-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-5.2.4.Final-wildfly1400.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/wildfly-webservices-server-integration-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/wildfly-weld-bean-validation-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/wildfly-weld-common-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/wildfly-weld-ejb-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/wildfly-weld-jpa-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/wildfly-weld-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/wildfly-weld-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/wildfly-weld-transactions-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/wildfly-weld-webservices-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/wildfly-xts-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/jboss-classfilewriter-1.2.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/jboss-common-beans-2.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/deployers/jboss-service-deployer/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/jboss-dmr-1.5.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/jboss-ejb-client-4.0.12.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb/remote/protocol/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/jboss-ejb3-ext-api-2.2.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/META-INF/ra.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/generic-jms-ra-jar-2.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/jboss-iiop-client-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled/jboss-seam-int-jbossas.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/jboss-invocation-1.5.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-1.4.11.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/jandex-2.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/jboss-jaxb-intros-1.0.2.GA.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/jboss-transaction-spi-7.6.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/narayana-jts-integration-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/narayana-jts-idlj-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/log4j-jboss-logmanager-1.1.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/main/commons-logging-jboss-logging-1.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/jul-to-slf4j-stub-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/jboss-logging-3.3.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-2.1.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-2.0.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/jboss-marshalling-river-2.0.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/jboss-metadata-appclient-12.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/common/main/jboss-metadata-common-12.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ear/main/jboss-metadata-ear-12.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ear/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ejb/main/jboss-metadata-ejb-12.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ejb/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/jboss-metadata-web-12.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/mod_cluster-container-spi-1.4.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/mod_cluster-core-1.4.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/mod_cluster-load-spi-1.4.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/jboss-msc-1.4.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/compensations-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-api-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-bridge-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-integration-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-util-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main/txframework-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/remoting-jmx-3.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/jboss-remoting-5.0.8.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/jose-jwt-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/resteasy-atom-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/resteasy-cdi-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/resteasy-crypto-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/resteasy-jackson-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/resteasy-jackson2-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/resteasy-jaxb-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-client-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-client-microprofile-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-jaxrs-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/resteasy-jettison-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/resteasy-jsapi-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/resteasy-json-binding-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/resteasy-json-p-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/resteasy-multipart-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/resteasy-rxjava2-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/resteasy-spring-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/resteasy-validator-provider-11-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/resteasy-yaml-provider-3.6.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-common-3.0.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-extras-3.0.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-ntlm-3.0.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-spnego-3.0.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/jbossxacml-2.0.8.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/staxmapper-1.3.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/jboss-stdio-1.0.2.GA.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/jboss-threads-2.3.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/jboss-vfs-3.2.14.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/weld-api-3.0.SP4.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-core-impl-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-ejb-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-jta-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-web-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/probe/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/probe/main/weld-probe-core-3.0.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/weld-spi-3.0.SP4.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/jbossws-api-1.1.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/jbossws-common-3.2.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/jbossws-cxf-factories-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/jbossws-cxf-server-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/jbossws-cxf-transports-udp-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/jbossws-cxf-transports-undertow-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/sts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-client-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-jaspi-5.2.4.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/jaxws-undertow-httpspi-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/jbossws-spi-3.2.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/jbossws-common-tools-1.3.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main/xnio-api-3.6.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/netty-xnio-transport-0.1.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main/xnio-nio-3.6.5.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbosstxbridge-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbossxts-5.9.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jdom/main/jdom-1.1.3.jar X%%APP_HOME%%/modules/system/layers/base/org/jdom/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jgroups/azure/main/jgroups-azure-1.2.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jgroups/azure/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jgroups/kubernetes/main/jgroups-kubernetes-1.0.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jgroups/kubernetes/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/jgroups-4.0.15.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/joda-time-2.9.7.jar X%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/jsoup/main/jsoup-1.8.3.jar X%%APP_HOME%%/modules/system/layers/base/org/jsoup/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/omg/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/cryptacular-1.2.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/java-support-7.1.1.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-core-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-profile-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-saml-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-saml-impl-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-security-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-security-impl-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-soap-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-impl-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-saml-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-saml-impl-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xmlsec-api-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xmlsec-impl-3.3.0.jar X%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-5.0.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-commons-1.0.0.final.jar X%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-infinispan-5.0.3.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/common/main/picketlink-common-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/config/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/config/main/picketlink-config-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/core/api/main/picketlink-api-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/core/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/core/main/picketlink-impl-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/bindings/main/picketlink-wildfly8-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/federation/main/picketlink-federation-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/api/main/picketlink-idm-api-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/main/picketlink-idm-impl-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/schema/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/picketlink/idm/schema/main/picketlink-idm-simple-schema-2.5.5.SP12.jar X%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/vdx-core-1.1.6.jar X%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/vdx-wildfly-1.1.6.jar X%%APP_HOME%%/modules/system/layers/base/org/reactivestreams/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/reactivestreams/main/reactive-streams-1.0.2.jar X%%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main/slf4j-ext-1.7.22.jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/jbosgi-xservice.properties X%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/slf4j-jboss-logmanager-1.0.3.GA.jar X%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/slf4j-api-1.7.22.jbossorg-1.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/client/config/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/client/config/main/wildfly-client-config-1.0.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/api/main/wildfly-clustering-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ee/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ee/infinispan/main/wildfly-clustering-ee-infinispan-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ee/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ee/spi/main/wildfly-clustering-ee-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/infinispan/main/wildfly-clustering-ejb-infinispan-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/ejb/spi/main/wildfly-clustering-ejb-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/infinispan/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/infinispan/spi/main/wildfly-clustering-infinispan-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/jgroups/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/jgroups/api/main/wildfly-clustering-jgroups-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/jgroups/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/jgroups/spi/main/wildfly-clustering-jgroups-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/api/main/wildfly-clustering-marshalling-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/infinispan/main/wildfly-clustering-marshalling-infinispan-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/jboss/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/jboss/main/wildfly-clustering-marshalling-jboss-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/marshalling/spi/main/wildfly-clustering-marshalling-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/server/main/wildfly-clustering-server-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/service/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/service/main/wildfly-clustering-service-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/singleton/main/wildfly-clustering-singleton-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/spi/main/wildfly-clustering-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/api/main/wildfly-clustering-web-api-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/infinispan/main/wildfly-clustering-web-infinispan-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/spi/main/wildfly-clustering-web-spi-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/clustering/web/undertow/main/wildfly-clustering-web-undertow-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/common/main/wildfly-common-1.4.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/discovery/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/discovery/main/wildfly-discovery-client-1.1.1.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/embedded/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/embedded/main/wildfly-embedded-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch/jberet/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/batch/jberet/main/wildfly-batch-jberet-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/bean-validation/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/bean-validation/main/wildfly-bean-validation-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/clustering/singleton/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/clustering/singleton/main/wildfly-clustering-singleton-extension-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/core-management-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/core-management-client/main/wildfly-core-management-client-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/core-management/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/core-management/main/wildfly-core-management-subsystem-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/datasources-agroal/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/datasources-agroal/main/wildfly-datasources-agroal-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/discovery/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/discovery/main/wildfly-discovery-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/ee-security/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/ee-security/main/wildfly-ee-security-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/elytron/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/elytron/main/wildfly-elytron-integration-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/io/main/wildfly-io-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/messaging-activemq/main/artemis-wildfly-integration-1.0.2.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/messaging-activemq/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/messaging-activemq/main/wildfly-messaging-activemq-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/config-smallrye/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/config-smallrye/main/wildfly-microprofile-config-smallrye-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/health-smallrye/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/health-smallrye/main/wildfly-microprofile-health-smallrye-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/metrics-smallrye/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/metrics-smallrye/main/wildfly-microprofile-metrics-smallrye-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/opentracing-smallrye/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/microprofile/opentracing-smallrye/main/wildfly-microprofile-opentracing-extension-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/mod_cluster/main/wildfly-mod_cluster-extension-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/picketlink/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/picketlink/main/wildfly-picketlink-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/request-controller/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/request-controller/main/wildfly-request-controller-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/rts/main/wildfly-rts-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/security/manager/main/wildfly-security-manager-7.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/extension/undertow/main/wildfly-undertow-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/common/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/common/main/wildfly-http-client-common-1.0.12.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/ejb/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/ejb/main/wildfly-http-ejb-client-1.0.12.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/naming/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/naming/main/wildfly-http-naming-client-1.0.12.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/transaction/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/http-client/transaction/main/wildfly-http-transaction-client-1.0.12.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/iiop-openjdk/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/iiop-openjdk/main/wildfly-iiop-openjdk-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/microprofile/opentracing-smallrye/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/microprofile/opentracing-smallrye/main/wildfly-microprofile-opentracing-smallrye-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/mod_cluster/undertow/main/wildfly-mod_cluster-undertow-15.0.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/naming-client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/naming-client/main/wildfly-naming-client-1.0.9.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/naming/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/linux-i386/libwfssl.so X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/linux-x86_64/libwfssl.so X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/macosx-x86_64/libwfssl.dylib X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/solaris-x86_64/libwfssl.so X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/win-i686/wfssl.dll X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/lib/win-x86_64/wfssl.dll X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/openssl/main/wildfly-openssl-java-1.0.6.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-private/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-private/main/wildfly-elytron-1.7.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server-servlet/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server-servlet/main/undertow-server-servlet-1.3.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron-web/undertow-server/main/undertow-server-1.3.0.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/elytron/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/security/manager/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/transaction/client/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/wildfly/transaction/client/main/wildfly-transaction-client-1.1.2.Final.jar X%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/module.xml X%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/snakeyaml-1.18.jar X%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml X%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/java.sql.Driver X%%APP_HOME%%/modules/system/layers/base/sun/scripting/main/module.xml X%%APP_HOME%%/modules/system/layers/base/sun/scripting/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory X%%APP_HOME%%/standalone/deployments/README.txt X%%APP_HOME%%/welcome-content/bkg.gif X%%APP_HOME%%/welcome-content/favicon.ico X%%APP_HOME%%/welcome-content/index.html X%%APP_HOME%%/welcome-content/index_noconsole.html X%%APP_HOME%%/welcome-content/jbosscommunity_logo_hori_white.png X%%APP_HOME%%/welcome-content/noconsole.html X%%APP_HOME%%/welcome-content/noredirect.html X%%APP_HOME%%/welcome-content/wildfly.css X%%APP_HOME%%/welcome-content/wildfly_logo.png f27bc3fb513a3367697e305bc120421e exit