svn commit: r431670 - in head: . java/wildfly10

Jimmy Olgeni olgeni at FreeBSD.org
Mon Jan 16 15:27:03 UTC 2017


Author: olgeni
Date: Mon Jan 16 15:27:01 2017
New Revision: 431670
URL: https://svnweb.freebsd.org/changeset/ports/431670

Log:
  Upgrade java/wildfly10 to 10.1.0.
  
  - Move installation directory to /usr/local/wildfly10.
  - Fix directory permissions and ownership (root:wheel everywhere except config.)
  - Remove all @dir entries which are now unnecessary.
  - Add upgrade notice to UPDATING.
  
  PR:		212052
  Submitted by:	olgeni
  Approved by:	maintainer

Modified:
  head/UPDATING
  head/java/wildfly10/Makefile
  head/java/wildfly10/distinfo
  head/java/wildfly10/pkg-plist

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Mon Jan 16 15:26:07 2017	(r431669)
+++ head/UPDATING	Mon Jan 16 15:27:01 2017	(r431670)
@@ -5,6 +5,15 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20170116:
+  AFFECTS: users of java/wildfly10
+  AUTHOR: olgeni at FreeBSD.org
+
+  The java/wildfly10 port has been updated to 10.1.0. To complete the
+  migration you must copy your existing configuration (directories
+  "appclient", "standalone", and "domain") from /usr/local/wildfly-10.0.0
+  to /usr/local/wildfly10.
+
 20170115:
   AFFECTS: users of net-mgmt/librenms
   AUTHOR: dvl at FreeBSD.org
@@ -190,7 +199,7 @@ you update your ports collection, before
 
   Bareos v1.6.x changed the configuration scheme, from one configuration
   file per Bareos component (file daemon, storage daemon, and director)
-  to several configuration files, in several directories, for each 
+  to several configuration files, in several directories, for each
   component. See http://doc.bareos.org/master/html/bareos-manual-main-reference.html
 
   The new scheme will use all files named *.conf in the directory
@@ -218,7 +227,7 @@ you update your ports collection, before
    - misc/osinfo-db: contains database with OS data
    - devel/libosinfo: the library
 
-  As osinfo-db-tools now ships binaries that previously were 
+  As osinfo-db-tools now ships binaries that previously were
   part of libosinfo, it's required to delete the old libosinfo
   package to prevent conflict because of same files installation:
 
@@ -444,15 +453,15 @@ you update your ports collection, before
   AFFECTS: Users of net-im/ejabberd
   AUTHOR: ashish at FreeBSD.org
 
-  Before upgrading ejabberd to 16.09, please make sure to backup your 
+  Before upgrading ejabberd to 16.09, please make sure to backup your
   ejabberd data using:
- 
+
      % sudo -u ejabberd -H ejabberdctl backup /path/to/backup/file
 
-  In some cases, ejabberd may fail to start, for which a workaround is to 
+  In some cases, ejabberd may fail to start, for which a workaround is to
   remove the schema.DAT file from /var/spool/ejabberd before starting, and
   then restoring everything from the backup using:
-     
+
      % sudo -u ejabberd -H ejabberdctl restore /path/to/backup/file
 
   For more details:

Modified: head/java/wildfly10/Makefile
==============================================================================
--- head/java/wildfly10/Makefile	Mon Jan 16 15:26:07 2017	(r431669)
+++ head/java/wildfly10/Makefile	Mon Jan 16 15:27:01 2017	(r431670)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	wildfly10
-PORTVERSION=	10.0.0
-PORTREVISION=   3
+PORTVERSION=	10.1.0
 CATEGORIES=	java www
 MASTER_SITES=	http://download.jboss.org/wildfly/${WILDFLY_VERSION}/
 DISTNAME=	wildfly-${WILDFLY_VERSION}
@@ -29,8 +28,8 @@ SUB_LIST=	APP_SHORTNAME=${PORTNAME} \
 		USER=${USER} \
 		GROUP=${GROUP} \
 		PID_FILE=${PID_FILE} \
-		APP_HOME=${PREFIX}/wildfly-${PORTVERSION}
-PLIST_SUB=	APP_HOME=wildfly-${PORTVERSION}
+		APP_HOME=${PREFIX}/${PORTNAME}
+PLIST_SUB=	APP_HOME=${PORTNAME}
 
 CONFIG_FILES=	appclient/configuration/appclient.xml \
 		appclient/configuration/logging.properties \
@@ -64,12 +63,12 @@ do-build:
 	${RM} -r ${WRKSRC}/bin/init.d
 
 do-install:
-	${MKDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}
-	(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION})
-	${RMDIR} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}/.installation
+	${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}
+	(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${PORTNAME})
+	${RMDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}/.installation
 .for FILE in ${CONFIG_FILES}
-	${MV} ${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}/${FILE} \
-		${STAGEDIR}${PREFIX}/wildfly-${PORTVERSION}/${FILE}.sample
+	${MV} ${STAGEDIR}${PREFIX}/${PORTNAME}/${FILE} \
+		${STAGEDIR}${PREFIX}/${PORTNAME}/${FILE}.sample
 .endfor
 
 .include <bsd.port.mk>

Modified: head/java/wildfly10/distinfo
==============================================================================
--- head/java/wildfly10/distinfo	Mon Jan 16 15:26:07 2017	(r431669)
+++ head/java/wildfly10/distinfo	Mon Jan 16 15:27:01 2017	(r431670)
@@ -1,2 +1,3 @@
-SHA256 (wildfly-10.0.0.Final.tar.gz) = e00c4e4852add7ac09693e7600c91be40fa5f2791d0b232e768c00b2cb20a84b
-SIZE (wildfly-10.0.0.Final.tar.gz) = 137189474
+TIMESTAMP = 1484476942
+SHA256 (wildfly-10.1.0.Final.tar.gz) = 80781609be387045273f974662dadf7f64ad43ee93395871429bc6b7786ec8bc
+SIZE (wildfly-10.1.0.Final.tar.gz) = 139025162

Modified: head/java/wildfly10/pkg-plist
==============================================================================
--- head/java/wildfly10/pkg-plist	Mon Jan 16 15:26:07 2017	(r431669)
+++ head/java/wildfly10/pkg-plist	Mon Jan 16 15:27:01 2017	(r431670)
@@ -22,32 +22,50 @@
 @sample %%APP_HOME%%/standalone/configuration/standalone-full.xml.sample
 @sample %%APP_HOME%%/standalone/configuration/standalone-ha.xml.sample
 @sample %%APP_HOME%%/standalone/configuration/standalone.xml.sample
+ at mode 700
+ at dir %%APP_HOME%%/standalone/tmp/auth
+ at dir %%APP_HOME%%/standalone/tmp
+ at dir %%APP_HOME%%/standalone/lib/ext
+ at dir %%APP_HOME%%/standalone/lib
+ at dir %%APP_HOME%%/standalone/deployments
+ at dir %%APP_HOME%%/standalone/configuration
+ at dir %%APP_HOME%%/standalone
+ at dir %%APP_HOME%%/domain/tmp/auth
+ at dir %%APP_HOME%%/domain/tmp
+ at dir %%APP_HOME%%/domain/data/content
+ at dir %%APP_HOME%%/domain/data
+ at dir %%APP_HOME%%/domain/configuration
+ at dir %%APP_HOME%%/domain
+ at dir %%APP_HOME%%/appclient/configuration
+ at dir %%APP_HOME%%/appclient
+ at owner
+ at group
 @mode
 %%APP_HOME%%/LICENSE.txt
 %%APP_HOME%%/README.txt
 %%APP_HOME%%/bin/.jbossclirc
 %%APP_HOME%%/bin/add-user.properties
-@(www,www,555) %%APP_HOME%%/bin/add-user.sh
 %%APP_HOME%%/bin/appclient.conf
-@(www,www,555) %%APP_HOME%%/bin/appclient.sh
 %%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt
 %%APP_HOME%%/bin/client/README-EJB-JMS.txt
 %%APP_HOME%%/bin/client/jboss-cli-client.jar
 %%APP_HOME%%/bin/client/jboss-client.jar
 %%APP_HOME%%/bin/domain.conf
-@(www,www,555) %%APP_HOME%%/bin/domain.sh
 %%APP_HOME%%/bin/jboss-cli-logging.properties
-@(www,www,555) %%APP_HOME%%/bin/jboss-cli.sh
 %%APP_HOME%%/bin/jboss-cli.xml
-@(www,www,555) %%APP_HOME%%/bin/jconsole.sh
-@(www,www,555) %%APP_HOME%%/bin/jdr.sh
 %%APP_HOME%%/bin/launcher.jar
 %%APP_HOME%%/bin/product.conf
 %%APP_HOME%%/bin/standalone.conf
-@(www,www,555) %%APP_HOME%%/bin/standalone.sh
-@(www,www,555) %%APP_HOME%%/bin/vault.sh
-@(www,www,555) %%APP_HOME%%/bin/wsconsume.sh
-@(www,www,555) %%APP_HOME%%/bin/wsprovide.sh
+@(,,555) %%APP_HOME%%/bin/add-user.sh
+@(,,555) %%APP_HOME%%/bin/appclient.sh
+@(,,555) %%APP_HOME%%/bin/domain.sh
+@(,,555) %%APP_HOME%%/bin/jboss-cli.sh
+@(,,555) %%APP_HOME%%/bin/jconsole.sh
+@(,,555) %%APP_HOME%%/bin/jdr.sh
+@(,,555) %%APP_HOME%%/bin/standalone.sh
+@(,,555) %%APP_HOME%%/bin/vault.sh
+@(,,555) %%APP_HOME%%/bin/wsconsume.sh
+@(,,555) %%APP_HOME%%/bin/wsprovide.sh
 %%APP_HOME%%/copyright.txt
 %%APP_HOME%%/docs/contrib/scripts/README.md
 %%APP_HOME%%/docs/contrib/scripts/init.d/wildfly-init-debian.sh
@@ -61,44 +79,40 @@
 %%APP_HOME%%/docs/contrib/scripts/systemd/launch.sh
 %%APP_HOME%%/docs/contrib/scripts/systemd/wildfly.conf
 %%APP_HOME%%/docs/contrib/scripts/systemd/wildfly.service
+%%APP_HOME%%/docs/examples/configs/standalone-activemq-colocated.xml
+%%APP_HOME%%/docs/examples/configs/standalone-azure-full-ha.xml
+%%APP_HOME%%/docs/examples/configs/standalone-azure-ha.xml
 %%APP_HOME%%/docs/examples/configs/standalone-ec2-full-ha.xml
 %%APP_HOME%%/docs/examples/configs/standalone-ec2-ha.xml
 %%APP_HOME%%/docs/examples/configs/standalone-genericjms.xml
 %%APP_HOME%%/docs/examples/configs/standalone-gossip-full-ha.xml
 %%APP_HOME%%/docs/examples/configs/standalone-gossip-ha.xml
 %%APP_HOME%%/docs/examples/configs/standalone-jts.xml
+%%APP_HOME%%/docs/examples/configs/standalone-load-balancer.xml
 %%APP_HOME%%/docs/examples/configs/standalone-minimalistic.xml
 %%APP_HOME%%/docs/examples/configs/standalone-picketlink.xml
 %%APP_HOME%%/docs/examples/configs/standalone-rts.xml
 %%APP_HOME%%/docs/examples/configs/standalone-xts.xml
-%%APP_HOME%%/docs/licenses/apache license 2.0 - license-2.0.txt
-%%APP_HOME%%/docs/licenses/apache license, version 2.0 - apache2.0.php
 %%APP_HOME%%/docs/licenses/apache software license, version 2.0 - apache-2.0.txt
 %%APP_HOME%%/docs/licenses/bouncy castle licence - licence.html
-%%APP_HOME%%/docs/licenses/cddl 1.1 - cddl+gpl_1_1.html
-%%APP_HOME%%/docs/licenses/cddl+gpl license - cddl+gpl_1_1.html
 %%APP_HOME%%/docs/licenses/common development and distribution license - cddl.txt
 %%APP_HOME%%/docs/licenses/common public license, version 1.0 - cpl-1.0.txt
 %%APP_HOME%%/docs/licenses/creative commons attribution 2.5 - jcip-cc-by-2.5.txt
 %%APP_HOME%%/docs/licenses/eclipse distribution license, version 1.0 - edl-1.0.txt
 %%APP_HOME%%/docs/licenses/eclipse public license, version 1.0 - epl-1.0.txt
-%%APP_HOME%%/docs/licenses/eclipse public license, version 1.0 - epl-v10.html
 %%APP_HOME%%/docs/licenses/gnu general public license, version 2 with the classpath exception - gpl-2.0-ce.txt
-%%APP_HOME%%/docs/licenses/gnu lesser general public license - lgpl-3.0.txt
 %%APP_HOME%%/docs/licenses/gnu lesser general public license, version 2.1 - lgpl-2.1.txt
-%%APP_HOME%%/docs/licenses/gpl - gplv2+ce.html
+%%APP_HOME%%/docs/licenses/gnu lesser general public license, version 3 - lgpl-3.0.txt
 %%APP_HOME%%/docs/licenses/h2 license, version 1.0 - h2.txt
 %%APP_HOME%%/docs/licenses/jdom license - jdom-1.0.txt
-%%APP_HOME%%/docs/licenses/lgpl - lgpl.txt
 %%APP_HOME%%/docs/licenses/licenses.xml
 %%APP_HOME%%/docs/licenses/mozilla public license, version 1.1 - mpl-1.1.txt
 %%APP_HOME%%/docs/licenses/public domain - cc0-1.0.txt
 %%APP_HOME%%/docs/licenses/the apache software license, version 2.0 - license-2.0.txt
 %%APP_HOME%%/docs/licenses/the bsd license - bsd.txt
-%%APP_HOME%%/docs/licenses/the gnu lesser general public license, version 2.1 - lgpl-2.1.html
-%%APP_HOME%%/docs/licenses/the mit license - license.txt
+%%APP_HOME%%/docs/licenses/the jaxen license - license.html
+%%APP_HOME%%/docs/licenses/the jsoup mit license - license.html
 %%APP_HOME%%/docs/licenses/the mit license - mit.txt
-%%APP_HOME%%/docs/licenses/the werken company license - license.html
 %%APP_HOME%%/docs/schema/application-client_6.xsd
 %%APP_HOME%%/docs/schema/application-client_7.xsd
 %%APP_HOME%%/docs/schema/application_1_4.xsd
@@ -140,6 +154,7 @@
 %%APP_HOME%%/docs/schema/jboss-as-config_1_5.xsd
 %%APP_HOME%%/docs/schema/jboss-as-config_1_6.xsd
 %%APP_HOME%%/docs/schema/jboss-as-config_1_7.xsd
+%%APP_HOME%%/docs/schema/jboss-as-config_1_8.xsd
 %%APP_HOME%%/docs/schema/jboss-as-config_2_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-config_2_1.xsd
 %%APP_HOME%%/docs/schema/jboss-as-config_2_2.xsd
@@ -336,6 +351,8 @@
 %%APP_HOME%%/docs/schema/wildfly-cli_3_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-config_3_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-config_4_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-config_4_1.xsd
+%%APP_HOME%%/docs/schema/wildfly-config_4_2.xsd
 %%APP_HOME%%/docs/schema/wildfly-datasources_2_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-datasources_3_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-datasources_4_0.xsd
@@ -372,23 +389,28 @@
 %%APP_HOME%%/docs/schema/wildfly-undertow_1_2.xsd
 %%APP_HOME%%/docs/schema/wildfly-undertow_2_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-undertow_3_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-undertow_3_1.xsd
 %%APP_HOME%%/docs/schema/xml.xsd
 %%APP_HOME%%/jboss-modules.jar
 %%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-3.3.1.jar
 %%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/cal10n-api-0.8.1.jar
 %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/classmate-1.1.0.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/classmate-1.3.1.jar
 %%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/jackson-annotations-2.5.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/jackson-annotations-2.7.4.jar
 %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/jackson-core-2.5.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/jackson-core-2.7.4.jar
 %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/jackson-databind-2.5.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/jackson-databind-2.7.4.jar
 %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-base-2.5.4.jar
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-json-provider-2.5.4.jar
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-module-jaxb-annotations-2.5.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/jackson-datatype-jdk8-2.7.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/jackson-datatype-jsr310-2.7.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-base-2.7.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-json-provider-2.7.4.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-module-jaxb-annotations-2.7.4.jar
 %%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/relaxngDatatype-2011.1.jar
@@ -398,10 +420,12 @@
 %%APP_HOME%%/modules/system/layers/base/com/google/guava/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/h2-1.3.173.jar
 %%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/azure-storage-4.0.0.jar
+%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-runtime-2.21.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-tools-2.21.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/jsf-impl-2.2.12-jbossorg-2.jar
+%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/jsf-impl-2.2.13.SP1.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/codemodel-2.2.11.jbossorg-1.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-core-2.2.11.jbossorg-1.jar
@@ -422,17 +446,17 @@
 %%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/ibm/jdk/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/io/netty/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/netty/main/netty-all-4.0.32.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/netty/main/netty-all-4.0.33.Final.jar
 %%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/undertow-core-1.3.15.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/undertow-core-1.4.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/io/undertow/js/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/undertow/js/main/undertow-js-1.0.1.Final.jar
-%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/jastow-2.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/js/main/undertow-js-1.0.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/jastow-2.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/undertow-servlet-1.3.15.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/undertow-servlet-1.4.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/undertow-websockets-jsr-1.3.15.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/undertow-websockets-jsr-1.4.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javaee/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/activation-1.1.1.jar
 %%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/module.xml
@@ -443,13 +467,13 @@
 %%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/jboss-ejb-api_3.2_spec-1.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/jboss-el-api_3.0_spec-1.0.5.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/jboss-el-api_3.0_spec-1.0.7.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/el/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/cdi-api-1.2.jar
 %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main/jboss-concurrency-api_1.0_spec-1.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/jboss-jsf-api_2.2_spec-2.2.12.jar
+%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/jboss-jsf-api_2.2_spec-2.2.13.jar
 %%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/javax.inject-1.jar
 %%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/module.xml
@@ -465,7 +489,7 @@
 %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/openjdk-orb-8.0.5.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/openjdk-orb-8.0.6.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/hibernate-jpa-2.1-api-1.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/jbosgi-xservice.properties
 %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/module.xml
@@ -480,9 +504,8 @@
 %%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/jboss-jsp-api_2.3_spec-1.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.1.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.1.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/sql/api/main/jboss-javax-sql-api_7.0_spec-2.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/sql/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/jboss-transaction-api_1.2_spec-1.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/module.xml
@@ -501,7 +524,7 @@
 %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-2.0.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-2.0.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/net/jcip/main/jcip-annotations-1.0.jar
 %%APP_HOME%%/modules/system/layers/base/net/jcip/main/module.xml
@@ -509,29 +532,29 @@
 %%APP_HOME%%/modules/system/layers/base/nu/xom/main/xom-1.2.10.jar
 %%APP_HOME%%/modules/system/layers/base/org/antlr/main/antlr-2.7.7.jar
 %%APP_HOME%%/modules/system/layers/base/org/antlr/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-commons-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-client-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-server-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-journal-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-native-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-1.1.0.wildfly-011.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-commons-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-client-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-server-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-journal-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-native-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-1.1.0.wildfly-017.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/lib/linux-i686/libartemis-native-32.so
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/lib/linux-x86_64/libartemis-native-64.so
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-amqp-protocol-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-proton-plug-1.1.0.wildfly-011.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-amqp-protocol-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-proton-plug-1.1.0.wildfly-017.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/artemis-hornetq-protocol-1.1.0.wildfly-011.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/artemis-hornetq-protocol-1.1.0.wildfly-017.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/artemis-stomp-protocol-1.1.0.wildfly-011.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/artemis-stomp-protocol-1.1.0.wildfly-017.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-ra-1.1.0.wildfly-011.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-service-extensions-1.1.0.wildfly-011.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-ra-1.1.0.wildfly-017.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-service-extensions-1.1.0.wildfly-017.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/avro/main/avro-1.7.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/avro/main/module.xml
@@ -550,45 +573,48 @@
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main/commons-pool-1.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-object-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.1.4-jandex.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-security-3.1.4-jandex.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-security-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-sts-core-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-3.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-3.1.4.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-object-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-features-clustering-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.1.6-jandex.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-3.1.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-3.0.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-bug986-3.0.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-3.0.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-runtime-3.0.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-3.0.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-core-3.1.4.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-core-3.1.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/cxf-services-sts-core-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/cxf-rt-ws-security-3.1.6-jandex.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/cxf-rt-ws-security-3.1.6.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpasyncclient-4.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpclient-4.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpcore-4.4.1.jar
@@ -609,23 +635,23 @@
 %%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/neethi-3.0.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/jipijapa-openjpa-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/jipijapa-openjpa-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/proton-j-0.8.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/proton-jms-0.8.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-2.0.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-2.0.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/velocity-1.7.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/jasypt-1.9.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-bindings-2.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-2.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-2.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-2.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-2.1.4.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-2.1.4.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-bindings-2.1.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-2.1.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-2.1.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-2.1.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-2.1.5.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-2.1.5.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/xmlschema-core-2.2.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/module.xml
@@ -654,9 +680,9 @@
 %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/woodstox-core-asl-4.4.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/dom4j/main/dom4j-1.6.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/dom4j/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/ecj-4.4.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/ecj-4.5.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.11.jar
 %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/module.xml
@@ -666,191 +692,190 @@
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main/javax.json-1.0.3.jar
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/jipijapa-hibernate4-1-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/jipijapa-hibernate4-1-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.3/jipijapa-hibernate4-3-10.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/4.3/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/5.0/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/hibernate-commons-annotations-5.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/infinispan/main/hibernate-infinispan-5.0.7.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/infinispan/main/hibernate-infinispan-5.0.10.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/infinispan/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/jipijapa-hibernate4-3-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/jipijapa-hibernate4-3-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-5.0.7.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-entitymanager-5.0.7.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-5.0.7.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-java8-5.0.7.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-5.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-entitymanager-5.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-5.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-java8-5.0.10.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jgroups/main/hibernate-search-backend-jgroups-5.5.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jgroups/main/hibernate-search-backend-jgroups-5.5.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jgroups/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/hibernate-search-backend-jms-5.5.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/hibernate-search-backend-jms-5.5.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/hibernate-search-engine-5.5.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/hibernate-search-engine-5.5.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/hibernate-search-orm-5.5.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/hibernate-search-orm-5.5.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/serialization-avro/main/hibernate-search-serialization-avro-5.5.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/serialization-avro/main/hibernate-search-serialization-avro-5.5.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/serialization-avro/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/hibernate-validator-cdi-5.2.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/hibernate-validator-cdi-5.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-5.2.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-5.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-commons-2.4.7.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-core-client-2.4.7.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-jms-client-2.4.7.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main/infinispan-cachestore-jdbc-8.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main/infinispan-cachestore-jdbc-8.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/infinispan-cachestore-remote-8.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/infinispan-cachestore-remote-8.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-8.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-8.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/infinispan-commons-8.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/infinispan-commons-8.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-8.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-8.2.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/javassist/main/javassist-3.18.1-GA.jar
 %%APP_HOME%%/modules/system/layers/base/org/javassist/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jaxen/main/jaxen-1.1.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/jaxen/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/jberet-core-1.2.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/jberet-core-1.2.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main/aesh-0.66.4.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main/aesh-0.66.8.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/wildfly-appclient-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/wildfly-appclient-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/wildfly-cli-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/wildfly-cli-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/wildfly-clustering-common-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/wildfly-clustering-common-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/wildfly-clustering-infinispan-extension-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/wildfly-clustering-infinispan-extension-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/wildfly-clustering-jgroups-extension-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/wildfly-clustering-jgroups-extension-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/wildfly-cmp-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/wildfly-cmp-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/wildfly-configadmin-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/wildfly-configadmin-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/wildfly-connector-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/wildfly-connector-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/release-stream-2.8.19.Final-resources.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/release-stream-2.8.27.Final-resources.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/wildfly-controller-client-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/wildfly-controller-client-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/wildfly-controller-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/wildfly-controller-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/wildfly-core-security-api-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/wildfly-core-security-api-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/wildfly-core-security-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/wildfly-core-security-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/wildfly-deployment-repository-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/wildfly-deployment-repository-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/wildfly-deployment-scanner-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/wildfly-deployment-scanner-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/wildfly-domain-http-error-context-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/wildfly-domain-http-error-context-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/wildfly-domain-http-interface-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/wildfly-domain-http-interface-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/wildfly-domain-management-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/wildfly-domain-management-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/wildfly-ee-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/wildfly-ee-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/timers/timer-sql.properties
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/wildfly-ejb3-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/wildfly-ejb3-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/wildfly-host-controller-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/wildfly-host-controller-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/wildfly-jacorb-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/wildfly-jacorb-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/wildfly-jaxr-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/wildfly-jaxr-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/wildfly-jaxrs-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/wildfly-jaxrs-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources/plugins.properties
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/wildfly-jdr-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/wildfly-jdr-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/wildfly-jmx-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/wildfly-jmx-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/wildfly-jpa-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/wildfly-jpa-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jipijapa-spi-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jipijapa-spi-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/weld-core-jsf-2.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/wildfly-jsf-injection-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/weld-core-jsf-2.3.5.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/wildfly-jsf-injection-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/wildfly-jsf-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/wildfly-jsf-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/wildfly-jsr77-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/wildfly-jsr77-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/wildfly-logging-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/wildfly-logging-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/wildfly-mail-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/wildfly-mail-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/wildfly-management-client-content-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/wildfly-management-client-content-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/wildfly-messaging-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/wildfly-messaging-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/wildfly-naming-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/wildfly-naming-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/wildfly-network-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/wildfly-network-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/wildfly-patching-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/wildfly-patching-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/wildfly-platform-mbean-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/wildfly-platform-mbean-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/wildfly-pojo-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/wildfly-pojo-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/wildfly-process-controller-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/wildfly-process-controller-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/wildfly-full/dir/META-INF/MANIFEST.MF
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/wildfly-full/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/wildfly-protocol-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/wildfly-protocol-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/wildfly-remoting-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/wildfly-remoting-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/wildfly-sar-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/wildfly-sar-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/wildfly-security-api-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/wildfly-security-api-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/wildfly-security-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/wildfly-security-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/self-contained/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/self-contained/main/wildfly-self-contained-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/self-contained/main/wildfly-self-contained-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/wildfly-system-jmx-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/wildfly-system-jmx-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/wildfly-threads-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/wildfly-threads-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/wildfly-transactions-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/wildfly-transactions-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/wildfly-version-2.0.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/wildfly-version-2.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/wildfly-web-common-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/wildfly-web-common-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/wildfly-web-10.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-5.1.3.Final-wildfly1000.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/wildfly-web-10.1.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-5.1.5.Final-wildfly1000.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/wildfly-webservices-server-integration-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/wildfly-webservices-server-integration-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/wildfly-weld-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/wildfly-weld-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/wildfly-xts-10.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/wildfly-xts-10.1.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/jboss-classfilewriter-1.1.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/jboss-common-beans-2.0.0.Final.jar
@@ -872,38 +897,38 @@
 %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/jboss-invocation-1.4.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-1.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.3.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-1.3.4.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.3.4.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.3.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-1.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.3.2.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.3.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-1.3.4.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.3.4.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.3.4.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.3.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-1.3.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-1.3.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/jandex-2.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/jandex-2.0.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/jboss-jaxb-intros-1.0.2.GA.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/jboss-transaction-spi-7.3.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/narayana-jts-integration-5.2.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/narayana-jts-integration-5.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/narayana-jts-idlj-5.2.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/narayana-jts-idlj-5.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/log4j-jboss-logmanager-1.1.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/jul-to-slf4j-stub-1.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/jboss-logging-3.3.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-2.0.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-2.0.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-1.4.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-1.4.11.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/jboss-marshalling-river-1.4.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/jboss-marshalling-river-1.4.11.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/jboss-metadata-appclient-10.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/module.xml
@@ -916,68 +941,68 @@
 %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/jboss-metadata-web-10.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/mod_cluster-container-spi-1.3.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/mod_cluster-container-spi-1.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/mod_cluster-core-1.3.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/mod_cluster-core-1.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/modules/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/jboss-msc-1.2.6.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/compensations-5.2.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/compensations-5.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-api-5.2.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-bridge-5.2.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-integration-5.2.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-util-5.2.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-api-5.3.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-bridge-5.3.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-integration-5.3.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-util-5.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main/txframework-5.2.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/txframework/main/txframework-5.3.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/jboss-remote-naming-2.0.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/remoting-jmx-2.0.1.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/jboss-remoting-4.0.18.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/jboss-remoting-4.0.21.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/jose-jwt-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/jose-jwt-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/jose-jwt/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/resteasy-atom-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/resteasy-atom-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/resteasy-cdi-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/resteasy-cdi-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/resteasy-crypto-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/resteasy-crypto-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/resteasy-jackson-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/resteasy-jackson-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/resteasy-jackson2-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/resteasy-jackson2-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/resteasy-jaxb-provider-3.0.14.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/async-http-servlet-3.0-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/resteasy-jaxb-provider-3.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/async-http-servlet-3.0-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-client-3.0.14.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-jaxrs-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-client-3.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-jaxrs-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/resteasy-jettison-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/resteasy-jettison-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/resteasy-jsapi-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/resteasy-jsapi-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/resteasy-json-p-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/resteasy-json-p-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/resteasy-multipart-provider-3.0.14.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/resteasy-spring-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/resteasy-multipart-provider-3.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/resteasy-spring-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/resteasy-validator-provider-11-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider-11/main/resteasy-validator-provider-11-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/resteasy-yaml-provider-3.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/resteasy-yaml-provider-3.0.19.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main/jboss-sasl-1.0.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-common-3.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-extras-3.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-ntlm-3.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-spnego-3.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-common-3.0.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-extras-3.0.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-ntlm-3.0.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-spnego-3.0.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/jbossxacml-2.0.8.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/module.xml
@@ -987,53 +1012,56 @@
 %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/jboss-threads-2.2.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/jboss-vfs-3.2.11.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/jboss-vfs-3.2.12.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/weld-api-2.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/weld-api-2.3.SP2.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-core-impl-2.3.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-core-impl-2.3.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/probe/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/probe/main/weld-probe-core-2.3.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/probe/main/weld-probe-core-2.3.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/weld-spi-2.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/weld-spi-2.3.SP2.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/jbossws-api-1.0.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/jbossws-common-3.1.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/jbossws-common-3.1.3.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/jbossws-cxf-factories-5.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/jbossws-cxf-factories-5.1.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/jbossws-cxf-server-5.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/jbossws-cxf-server-5.1.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/jbossws-cxf-transports-udp-5.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/jbossws-cxf-transports-udp-5.1.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/jbossws-cxf-transports-undertow-5.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/jbossws-cxf-transports-undertow-5.1.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-client-5.1.3.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-jaspi-5.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/sts/main/module.xml
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-client-5.1.5.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-jaspi-5.1.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/jaxws-undertow-httpspi-1.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/jbossws-spi-3.1.0.Final.jar

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-all mailing list