Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Dec 2019 18:28:24 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r521562 - in head/java: . wildfly17 wildfly17/files
Message-ID:  <201912301828.xBUISOHL074374@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Mon Dec 30 18:28:24 2019
New Revision: 521562
URL: https://svnweb.freebsd.org/changeset/ports/521562

Log:
  New port: java/wildfly17
  
  WildFly is a flexible, lightweight, managed application
  runtime that helps you build amazing applications.
  WildFly - new name for JBoss Application Server
  
  Fast Startup
  Small Footprint
  Modular Design
  Unified Configuration and Management
  
  And of course Java EE / Jakarta EE!
  
  WWW: https://wildfly.org/
  
  This is the first Wildfly with JAKARTA EE8 full support.
  
  PR:		242962
  Submitted by:	Simeo Reig <reig.simeo@gmail.com>

Added:
  head/java/wildfly17/
     - copied from r521432, head/java/wildfly16/
  head/java/wildfly17/files/wildfly17.in
     - copied unchanged from r521432, head/java/wildfly16/files/wildfly16.in
Deleted:
  head/java/wildfly17/files/wildfly16.in
Modified:
  head/java/Makefile
  head/java/wildfly17/Makefile
  head/java/wildfly17/distinfo
  head/java/wildfly17/files/pkg-message.in
  head/java/wildfly17/pkg-descr
  head/java/wildfly17/pkg-plist

Modified: head/java/Makefile
==============================================================================
--- head/java/Makefile	Mon Dec 30 18:16:59 2019	(r521561)
+++ head/java/Makefile	Mon Dec 30 18:28:24 2019	(r521562)
@@ -125,6 +125,7 @@
     SUBDIR += wildfly14
     SUBDIR += wildfly15
     SUBDIR += wildfly16
+    SUBDIR += wildfly17
     SUBDIR += wildfly90
     SUBDIR += xdoclet
 

Modified: head/java/wildfly17/Makefile
==============================================================================
--- head/java/wildfly16/Makefile	Mon Dec 30 03:31:20 2019	(r521432)
+++ head/java/wildfly17/Makefile	Mon Dec 30 18:28:24 2019	(r521562)
@@ -1,17 +1,18 @@
+# Created by: Simeo Reig <reig.simeo@gmail.com>
 # $FreeBSD$
 
-PORTNAME=	wildfly16
-PORTVERSION=	16.0.0
+PORTNAME=	wildfly17
+PORTVERSION=	17.0.1
 CATEGORIES=	java www
-MASTER_SITES=	http://download.jboss.org/wildfly/${WILDFLY_VERSION}/
+MASTER_SITES=	https://download.jboss.org/wildfly/${WILDFLY_VERSION}/
 DISTNAME=	wildfly-${WILDFLY_VERSION}
 
 MAINTAINER=	reig.simeo@gmail.com
-COMMENT=	Replacement for JBoss Application Server
+COMMENT=	WildFly is a Java Jakarta EE8 application server developed by Red Hat
 
 LICENSE=	GPLv2
 
-USE_RC_SUBR=	wildfly16
+USE_RC_SUBR=	wildfly17
 USE_JAVA=	yes
 
 JAVA_VERSION=	1.8+

Modified: head/java/wildfly17/distinfo
==============================================================================
--- head/java/wildfly16/distinfo	Mon Dec 30 03:31:20 2019	(r521432)
+++ head/java/wildfly17/distinfo	Mon Dec 30 18:28:24 2019	(r521562)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1551807700
-SHA256 (wildfly-16.0.0.Final.tar.gz) = 65ec8881c073e1fda0be293037eb7c8d19b38d6e57f83044086d39dc40a26385
-SIZE (wildfly-16.0.0.Final.tar.gz) = 180821890
+TIMESTAMP = 1577544705
+SHA256 (wildfly-17.0.1.Final.tar.gz) = 2812b43b6c8e61f2d764a12d5a11de79481461b8cac51434ea730ee5985d38de
+SIZE (wildfly-17.0.1.Final.tar.gz) = 183598392

Modified: head/java/wildfly17/files/pkg-message.in
==============================================================================
--- head/java/wildfly16/files/pkg-message.in	Mon Dec 30 03:31:20 2019	(r521432)
+++ head/java/wildfly17/files/pkg-message.in	Mon Dec 30 18:28:24 2019	(r521562)
@@ -5,17 +5,27 @@ To make WildFly bind to all interfaces add this to rc.
 
 %%APP_SHORTNAME%%_args="-Djboss.bind.address=0.0.0.0"
 
-See
+See http://wildscribe.github.io/ for additional startup properties.
 
-	https://community.jboss.org/wiki/JBossProperties
+To change JVM args, edit appropriate standalone.conf.
 
-for additional startup properties.
 
-To change JVM args, edit appropriate standalone.conf.
 
 To add the initial admin user:
 
 %%APP_HOME%%/bin/add-user.sh
+
+
+
+Standard output and error are redirected to %%APP_SHORTNAME%%_log_stdout and %%APP_SHORTNAME%%_log_stderr respectively. This is very handy to detect startup errors but in production could be advisible to avoid it
+because by default they are never rotated, to accomplish it add this to rc.conf
+
+%%APP_SHORTNAME%%_log_stdout="/dev/null"
+%%APP_SHORTNAME%%_log_stderr="/dev/null"
+
+Ordinary logs are located at %%APP_HOME%%/standalone/log/server.log 
+
+
 EOM
 }
 ]

Copied: head/java/wildfly17/files/wildfly17.in (from r521432, head/java/wildfly16/files/wildfly16.in)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/wildfly17/files/wildfly17.in	Mon Dec 30 18:28:24 2019	(r521562, copy of r521432, head/java/wildfly16/files/wildfly16.in)
@@ -0,0 +1,98 @@
+#!/bin/sh
+#
+# %%APP_SHORTNAME%% startup script.
+# $FreeBSD$
+#
+
+# PROVIDE: %%APP_SHORTNAME%%
+# REQUIRE: NETWORKING SERVERS
+# KEYWORD: shutdown
+
+# Add the following lines to /etc/rc.conf to enable %%APP_SHORTNAME%%:
+# %%APP_SHORTNAME%%_enable (bool):      Set to "YES" to enable %%APP_SHORTNAME%%
+# %%APP_SHORTNAME%%_args (str):         Optional arguments to OAJBoss
+# %%APP_SHORTNAME%%_log_stdout (str)       JBoss log output stdout, filename.
+# %%APP_SHORTNAME%%_log_stderr (str)       JBoss log output stderr, filename.
+#
+
+. /etc/rc.subr
+
+name="%%APP_SHORTNAME%%"
+rcvar=%%APP_SHORTNAME%%_enable
+extra_commands="status"
+
+load_rc_config $name
+
+%%APP_SHORTNAME%%_logdir="%%LOG_DIR%%"
+%%APP_SHORTNAME%%_enable="${%%APP_SHORTNAME%%_enable:-"NO"}"
+%%APP_SHORTNAME%%_log_stdout="${%%APP_SHORTNAME%%_log_stdout:-"${%%APP_SHORTNAME%%_logdir}/log"}"
+%%APP_SHORTNAME%%_log_stderr="${%%APP_SHORTNAME%%_log_stderr:-"${%%APP_SHORTNAME%%_logdir}/error"}"
+%%APP_SHORTNAME%%_args="${%%APP_SHORTNAME%%_args:-""}"
+%%APP_SHORTNAME%%_sleep="${%%APP_SHORTNAME%%_sleep:-"5"}"
+%%APP_SHORTNAME%%_kill9="${%%APP_SHORTNAME%%_kill9:-""}"
+%%APP_SHORTNAME%%_additional_killall="${%%APP_SHORTNAME%%_additional_killall:-""}"
+%%APP_SHORTNAME%%_user="%%USER%%"
+%%APP_SHORTNAME%%_group="%%GROUP%%"
+
+start_cmd="%%APP_SHORTNAME%%_start"
+stop_cmd="%%APP_SHORTNAME%%_stop"
+pidfile="%%PID_FILE%%"
+status_cmd="%%APP_SHORTNAME%%_status"
+
+WILDFLY_HOME="%%APP_HOME%%"
+#minimal requirements must be set for our javavmwrapper
+JAVA_VERSION="1.8+"
+export JAVA_VERSION
+
+%%APP_SHORTNAME%%_start ()
+{
+	if [ ! -d "${%%APP_SHORTNAME%%_logdir}" ]
+	then
+		install -d -o ${%%APP_SHORTNAME%%_user} ${%%APP_SHORTNAME%%_logdir}
+	fi
+
+	echo "%%APP_SHORTNAME%%: making sure all writeable dirs belong to proper user/group"
+	chown -R ${%%APP_SHORTNAME%%_user}:${%%APP_SHORTNAME%%_group} ${WILDFLY_HOME}/standalone
+	echo "Starting %%APP_SHORTNAME%%."
+	daemon -u ${%%APP_SHORTNAME%%_user} ${WILDFLY_HOME}/bin/standalone.sh ${%%APP_SHORTNAME%%_args} >> ${%%APP_SHORTNAME%%_log_stdout} 2>> ${%%APP_SHORTNAME%%_log_stderr}
+
+	sleep ${%%APP_SHORTNAME%%_sleep}	# let daemon(8) and sh(1) finish before executing pgrep(1)
+	pgrep -U ${%%APP_SHORTNAME%%_user} -f ${WILDFLY_HOME}/modules > ${pidfile}
+	chown ${%%APP_SHORTNAME%%_user} $pidfile
+}
+
+%%APP_SHORTNAME%%_stop ()
+{
+	# Subvert the check_pid_file procname check.
+	if [ -f ${pidfile} ]
+	then
+		kill `cat ${pidfile}`
+		# Only if we aware that our setup can hangs, and only after trying simple kill, we can kill it hard way.
+		if [ ! -z "${%%APP_SHORTNAME%%_kill9}" ]
+		then
+			sleep ${%%APP_SHORTNAME%%_sleep}
+			kill  -9 `cat ${pidfile}`
+		fi
+		# In some setups, JBoss can spawn some child processess, which could prevent it from stopping, and freeing net ports.
+		# Let's blindly kill them all, since we are really know what we are doing.
+		if [ ! -z "${%%APP_SHORTNAME%%_additional_killall}" ]
+		then
+			sleep ${%%APP_SHORTNAME%%_sleep}
+			killall ${%%APP_SHORTNAME%%_additional_killall}
+		fi
+		rm ${pidfile}
+	fi
+}
+
+%%APP_SHORTNAME%%_status ()
+{
+	# If running, show pid
+	if [ -f ${pidfile} ]
+	then
+		echo "%%APP_SHORTNAME%% is running as pid" `cat ${pidfile}`
+	else
+		echo "%%APP_SHORTNAME%% is not running"
+	fi
+}
+
+run_rc_command "$1"

Modified: head/java/wildfly17/pkg-descr
==============================================================================
--- head/java/wildfly16/pkg-descr	Mon Dec 30 03:31:20 2019	(r521432)
+++ head/java/wildfly17/pkg-descr	Mon Dec 30 18:28:24 2019	(r521562)
@@ -7,6 +7,6 @@ Small Footprint
 Modular Design
 Unified Configuration and Management
 
-And of course Java EE!
+And of course Java EE / Jakarta EE!
 
 WWW: https://wildfly.org/

Modified: head/java/wildfly17/pkg-plist
==============================================================================
--- head/java/wildfly16/pkg-plist	Mon Dec 30 03:31:20 2019	(r521432)
+++ head/java/wildfly17/pkg-plist	Mon Dec 30 18:28:24 2019	(r521562)
@@ -41,6 +41,18 @@
 @owner
 @group
 @mode
+@(,,555) %%APP_HOME%%/bin/add-user.sh
+@(,,555) %%APP_HOME%%/bin/appclient.sh
+@(,,555) %%APP_HOME%%/bin/common.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
+@(,,555) %%APP_HOME%%/bin/elytron-tool.sh
 %%APP_HOME%%/LICENSE.txt
 %%APP_HOME%%/README.txt
 %%APP_HOME%%/bin/.jbossclirc
@@ -56,18 +68,6 @@
 %%APP_HOME%%/bin/launcher.jar
 %%APP_HOME%%/bin/product.conf
 %%APP_HOME%%/bin/standalone.conf
-@(,,555) %%APP_HOME%%/bin/add-user.sh
-@(,,555) %%APP_HOME%%/bin/appclient.sh
-@(,,555) %%APP_HOME%%/bin/common.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
-@(,,555) %%APP_HOME%%/bin/elytron-tool.sh
 %%APP_HOME%%/bin/wildfly-elytron-tool.jar
 %%APP_HOME%%/copyright.txt
 %%APP_HOME%%/docs/contrib/scripts/README.md
@@ -109,6 +109,7 @@
 %%APP_HOME%%/docs/licenses/creative commons zero v1.0 universal.txt
 %%APP_HOME%%/docs/licenses/eclipse distribution license, version 1.0.txt
 %%APP_HOME%%/docs/licenses/eclipse public license 1.0.txt
+%%APP_HOME%%/docs/licenses/eclipse public license 2.0.txt
 %%APP_HOME%%/docs/licenses/fsf all permissive license.html
 %%APP_HOME%%/docs/licenses/full-feature-pack-licenses.html
 %%APP_HOME%%/docs/licenses/full-feature-pack-licenses.xml
@@ -146,15 +147,11 @@
 %%APP_HOME%%/docs/schema/application_8.xsd
 %%APP_HOME%%/docs/schema/batch-jberet_1_0.xsd
 %%APP_HOME%%/docs/schema/discovery-1_0.xsd
+%%APP_HOME%%/docs/schema/distributable-web_1_0.xsd
 %%APP_HOME%%/docs/schema/ejb-jar_2_1.xsd
 %%APP_HOME%%/docs/schema/ejb-jar_3_0.xsd
 %%APP_HOME%%/docs/schema/ejb-jar_3_1.xsd
 %%APP_HOME%%/docs/schema/ejb-jar_3_2.xsd
-%%APP_HOME%%/docs/schema/elytron-1_0.xsd
-%%APP_HOME%%/docs/schema/elytron-1_0_1.xsd
-%%APP_HOME%%/docs/schema/elytron-client-1_1.xsd
-%%APP_HOME%%/docs/schema/elytron-client-1_2.xsd
-%%APP_HOME%%/docs/schema/elytron-client-1_3.xsd
 %%APP_HOME%%/docs/schema/j2ee_1_4.xsd
 %%APP_HOME%%/docs/schema/j2ee_jaxrpc_mapping_1_1.xsd
 %%APP_HOME%%/docs/schema/j2ee_web_services_1_1.xsd
@@ -242,6 +239,7 @@
 %%APP_HOME%%/docs/schema/jboss-as-jgroups_4_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-jgroups_5_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-jgroups_6_0.xsd
+%%APP_HOME%%/docs/schema/jboss-as-jgroups_7_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-jmx_1_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-jmx_1_1.xsd
 %%APP_HOME%%/docs/schema/jboss-as-jmx_1_2.xsd
@@ -262,6 +260,7 @@
 %%APP_HOME%%/docs/schema/jboss-as-logging_4_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-logging_5_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-logging_6_0.xsd
+%%APP_HOME%%/docs/schema/jboss-as-logging_7_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-mail_1_0.xsd
 %%APP_HOME%%/docs/schema/jboss-as-mail_1_1.xsd
 %%APP_HOME%%/docs/schema/jboss-as-mail_1_2.xsd
@@ -358,6 +357,7 @@
 %%APP_HOME%%/docs/schema/jboss-jpa_1_0.xsd
 %%APP_HOME%%/docs/schema/jboss-pojo_7_0.xsd
 %%APP_HOME%%/docs/schema/jboss-remoting_5_0.xsd
+%%APP_HOME%%/docs/schema/jboss-remoting_5_1.xsd
 %%APP_HOME%%/docs/schema/jboss-service_7_0.xsd
 %%APP_HOME%%/docs/schema/jboss-web_10_0.xsd
 %%APP_HOME%%/docs/schema/jboss-web_10_1.xsd
@@ -395,6 +395,7 @@
 %%APP_HOME%%/docs/schema/persistence_1_0.xsd
 %%APP_HOME%%/docs/schema/persistence_2_0.xsd
 %%APP_HOME%%/docs/schema/shared-session-config_1_0.xsd
+%%APP_HOME%%/docs/schema/shared-session-config_2_0.xsd
 %%APP_HOME%%/docs/schema/singleton-deployment_1_0.xsd
 %%APP_HOME%%/docs/schema/trans-timeout-1_0.xsd
 %%APP_HOME%%/docs/schema/user-roles_1_0.xsd
@@ -427,6 +428,7 @@
 %%APP_HOME%%/docs/schema/wildfly-cli_3_3.xsd
 %%APP_HOME%%/docs/schema/wildfly-cli_3_4.xsd
 %%APP_HOME%%/docs/schema/wildfly-client-ejb_3_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-client-ejb_3_1.xsd
 %%APP_HOME%%/docs/schema/wildfly-client_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-config_10_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-config_3_0.xsd
@@ -444,6 +446,7 @@
 %%APP_HOME%%/docs/schema/wildfly-datasources_4_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-datasources_5_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-discovery_1_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-distributable-web_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-ee-security_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-ejb-timer_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-ejb3_3_0.xsd
@@ -457,6 +460,7 @@
 %%APP_HOME%%/docs/schema/wildfly-elytron_4_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-elytron_5_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-elytron_6_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-elytron_7_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-http-client_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-iiop-openjdk_2_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-iiop-openjdk_2_1.xsd
@@ -477,6 +481,7 @@
 %%APP_HOME%%/docs/schema/wildfly-messaging-activemq_4_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-messaging-activemq_5_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-messaging-activemq_6_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-messaging-activemq_7_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-microprofile-config-smallrye_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-microprofile-health-smallrye_1_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-microprofile-metrics-smallrye_1_0.xsd
@@ -515,29 +520,30 @@
 %%APP_HOME%%/docs/schema/wildfly-undertow_6_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-undertow_7_0.xsd
 %%APP_HOME%%/docs/schema/wildfly-undertow_8_0.xsd
+%%APP_HOME%%/docs/schema/wildfly-undertow_9_0.xsd
 %%APP_HOME%%/docs/schema/xml.xsd
 %%APP_HOME%%/docs/schema/xnio_3_5.xsd
 %%APP_HOME%%/jboss-modules.jar
-%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-6.2.1.jar
-%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-util-6.2.1.jar
+%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-7.1.jar
+%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-util-7.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.3.4.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.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/jackson-annotations-2.9.9.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.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/jackson-core-2.9.9.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.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/jackson-databind-2.9.9.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/datatype/jackson-datatype-jdk8/main/jackson-datatype-jdk8-2.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/jackson-datatype-jdk8-2.9.9.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.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/jackson-datatype-jsr310-2.9.9.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.9.8.jar
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-json-provider-2.9.8.jar
-%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-module-jaxb-annotations-2.9.8.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-base-2.9.9.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-jaxrs-json-provider-2.9.9.jar
+%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/jackson-module-jaxb-annotations-2.9.9.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/ben-manes/caffeine/main/caffeine-2.6.2.jar
 %%APP_HOME%%/modules/system/layers/base/com/github/ben-manes/caffeine/main/module.xml
@@ -569,7 +575,7 @@
 %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-runtime-3.0.7.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-tools-3.0.7.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.3.9.SP01.jar
+%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/jsf-impl-2.3.9.SP02.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.3.1.jar
 %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-jxc-2.3.1.jar
@@ -592,8 +598,8 @@
 %%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-narayana-1.3.jar
 %%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-pool-1.3.jar
 %%APP_HOME%%/modules/system/layers/base/io/agroal/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-core-0.30.6.jar
-%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-thrift-0.30.6.jar
+%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-core-0.34.0.jar
+%%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/main/jaeger-thrift-0.34.0.jar
 %%APP_HOME%%/modules/system/layers/base/io/jaegertracing/jaeger/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.1.29.Final.jar
@@ -625,24 +631,24 @@
 %%APP_HOME%%/modules/system/layers/base/io/smallrye/opentracing/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/io/smallrye/opentracing/main/smallrye-opentracing-1.1.1.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-2.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/undertow-core-2.0.21.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.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/jastow-2.0.7.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-2.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/undertow-servlet-2.0.21.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-2.0.19.Final.jar
+%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/undertow-websockets-jsr-2.0.21.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
 %%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/jboss-annotations-api_1.3_spec-1.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/api/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/jboss-batch-api_1.0_spec-1.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/jboss-batch-api_1.0_spec-1.0.2.Final.jar
 %%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.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/jboss-ejb-api_3.2_spec-1.0.2.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.13.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/el/api/main/module.xml
@@ -650,7 +656,7 @@
 %%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.2.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.3_spec-2.3.9.SP01.jar
+%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/jboss-jsf-api_2.3_spec-2.3.9.SP02.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
@@ -669,7 +675,7 @@
 %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.2.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.1.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/openjdk-orb-8.1.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/javax.persistence-api-2.2.jar
 %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/jboss-connector-api_1.7_spec-1.0.1.Final.jar
@@ -694,7 +700,7 @@
 %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/validation-api-2.0.1.Final.jar
-%%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/jboss-websocket-api_1.1_spec-1.1.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/jboss-websocket-api_1.1_spec-1.1.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/jboss-jaxrs-api_2.1_spec-1.0.2.Final.jar
 %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/module.xml
@@ -715,37 +721,37 @@
 %%APP_HOME%%/modules/system/layers/base/net/jcip/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/nu/xom/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/nu/xom/main/xom-1.2.10.jar
-%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-1.11.jar
-%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-extensions-1.6.jar
-%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-readline-1.14.jar
+%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-extensions-1.7.jar
+%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-readline-1.17.jar
 %%APP_HOME%%/modules/system/layers/base/org/aesh/main/module.xml
 %%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/journal/main/artemis-commons-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-journal-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-native-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/activemq-artemis-native-1.0.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-commons-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-journal-2.8.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-i686/libartemis-native-32.so
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-x86_64/libartemis-native-64.so
 %%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jdbc-store-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-client-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-server-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-service-extensions-2.6.3.jbossorg-00014.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-tools-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jdbc-store-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-client-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jms-server-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-service-extensions-2.8.1.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-tools-2.8.1.jar
 %%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-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-amqp-protocol-2.8.1.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-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/artemis-hornetq-protocol-2.8.1.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-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/artemis-stomp-protocol-2.8.1.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-2.6.3.jbossorg-00014.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-ra-2.8.1.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
@@ -753,7 +759,7 @@
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/commons-cli-1.3.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/commons-codec-1.10.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/commons-codec-1.11.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/commons-collections-3.2.2.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/module.xml
@@ -761,48 +767,48 @@
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/commons-lang-2.6.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/commons-lang3-3.8.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/commons-lang3-3.9.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-features-clustering-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-3.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-3.2.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-bug986-3.2.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-3.2.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-runtime-3.2.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-3.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-features-clustering-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-3.3.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-bug986-3.3.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-3.3.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-runtime-3.3.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-3.3.0.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.2.7.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-rt-features-logging-3.2.7.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-core-3.3.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-rt-features-logging-3.3.2.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.2.7.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/cxf-services-sts-core-3.3.2.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.2.7.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/cxf-rt-ws-security-3.3.2.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpclient-4.5.4.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpcore-4.4.5.jar
@@ -825,26 +831,26 @@
 %%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.1.1.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/jipijapa-openjpa-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/openjpa/main/jipijapa-openjpa-17.0.1.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.27.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/proton-j-0.32.0.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.1.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/thrift/main/libthrift-0.11.0.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-2.1.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/thrift/main/libthrift-0.12.0.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/thrift/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/velocity-engine-core-2.0.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/jasypt-1.9.2.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.2.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-2.2.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-2.2.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-2.2.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-2.2.2.jar
-%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-2.2.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-bindings-2.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-2.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-2.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-2.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-2.2.3.jar
+%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-2.2.3.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/ws/xmlschema/main/xmlschema-core-2.2.4.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/serializer-2.7.1.jbossorg-4.jar
 %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/xalan-2.7.1.jbossorg-4.jar
@@ -885,13 +891,14 @@
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/opentracing/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/microprofile-rest-client-api-1.0.1.jar
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/yasson-1.0.3.jar
-%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.16.jar
+%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.18.jar
 %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main/javax.el-impl-3.0.1-b08-jbossorg-1.jar
+%%APP_HOME%%/modules/system/layers/base/org/glassfish/jakarta/el/main/jakarta.el-3.0.2.jar
+%%APP_HOME%%/modules/system/layers/base/org/glassfish/jakarta/el/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/javax.enterprise.concurrent-1.0.jar
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/module.xml
@@ -899,27 +906,27 @@
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/json/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/javax.security.enterprise-1.0.jar
 %%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/jipijapa-hibernate4-1-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/jipijapa-hibernate4-1-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/4.1/module.xml
 %%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/5.3/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/bytecodetransformer/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/bytecodetransformer/main/wildfly-ormtransformer-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/bytecodetransformer/main/wildfly-ormtransformer-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/hibernate-commons-annotations-5.0.5.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/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/jipijapa-hibernate4-3-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate4-3/main/jipijapa-hibernate4-3-17.0.1.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-3/main/jipijapa-hibernate5-3-16.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/jipijapa-hibernate5-3-legacy-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/jipijapa-hibernate5-3-17.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/jipijapa-hibernate5-3-legacy-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5-3/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-16.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-legacy-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-17.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate5/main/jipijapa-hibernate5-legacy-17.0.1.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.3.9.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-5.3.9.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-5.3.10.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-5.3.10.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/hibernate-search-backend-jms-5.10.5.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend-jms/main/module.xml
@@ -929,185 +936,185 @@
 %%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.10.5.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-6.0.15.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/hibernate-validator-cdi-6.0.16.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-6.0.15.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-6.0.16.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/remote/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-9.4.14.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-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/infinispan-commons-9.4.14.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-commons-9.4.8.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-spi-9.4.8.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-v53-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-commons-9.4.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-spi-9.4.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-v53-9.4.14.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-9.4.14.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/infinispan-cachestore-jdbc-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/infinispan-cachestore-jdbc-9.4.14.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/infinispan-cachestore-remote-9.4.8.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/infinispan-cachestore-remote-9.4.14.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/javassist/main/javassist-3.23.1-GA.jar
+%%APP_HOME%%/modules/system/layers/base/org/javassist/main/javassist-3.23.2-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.3.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/jberet-core-1.3.4.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/wildfly-appclient-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/wildfly-cli-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/wildfly-clustering-common-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/wildfly-clustering-infinispan-extension-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/wildfly-clustering-jgroups-extension-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/wildfly-cmp-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/wildfly-configadmin-17.0.1.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-16.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/hal-console-3.1.2.Final-resources.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/wildfly-connector-17.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/hal-console-3.2.0.Final-resources.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/module.xml
 %%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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/wildfly-controller-client-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/wildfly-controller-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security-api/main/wildfly-core-security-api-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/wildfly-core-security-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/wildfly-deployment-repository-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/wildfly-deployment-scanner-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/wildfly-domain-http-error-context-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/wildfly-domain-http-interface-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/wildfly-domain-management-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/wildfly-ee-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/wildfly-ejb3-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/wildfly-host-controller-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/wildfly-jacorb-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/wildfly-jaxr-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/wildfly-jaxrs-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/wildfly-jdr-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/wildfly-jmx-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/wildfly-jpa-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jipijapa-spi-17.0.1.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-jsf-3.1.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/wildfly-jsf-injection-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/weld-jsf-3.1.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/wildfly-jsf-injection-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/wildfly-jsf-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/wildfly-jsr77-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/wildfly-logging-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/wildfly-mail-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/wildfly-management-client-content-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/wildfly-messaging-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/wildfly-naming-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/wildfly-network-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/wildfly-patching-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/wildfly-platform-mbean-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/wildfly-pojo-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/wildfly-process-controller-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/wildfly-protocol-9.0.2.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/wildfly-remoting-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/wildfly-sar-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security-api/main/wildfly-security-api-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/wildfly-security-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/wildfly-system-jmx-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/wildfly-threads-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/wildfly-transactions-17.0.1.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-8.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/wildfly-version-9.0.2.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/wildfly-web-common-17.0.1.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-16.0.0.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-5.2.4.Final-wildfly1400.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/wildfly-web-17.0.1.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-5.3.0.Final-wildfly1400.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/wildfly-webservices-server-integration-17.0.1.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/beanvalidation/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/wildfly-weld-bean-validation-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/wildfly-weld-bean-validation-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/wildfly-weld-common-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/wildfly-weld-common-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/wildfly-weld-ejb-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/wildfly-weld-ejb-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/wildfly-weld-jpa-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/wildfly-weld-jpa-17.0.1.Final.jar
 %%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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/wildfly-weld-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/wildfly-weld-spi-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/wildfly-weld-spi-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/wildfly-weld-transactions-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/wildfly-weld-transactions-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/wildfly-weld-webservices-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/wildfly-weld-webservices-17.0.1.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-16.0.0.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/wildfly-xts-17.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/jboss-classfilewriter-1.2.4.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
+%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/jboss-common-beans-2.0.1.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/deployers/jboss-service-deployer/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/jboss-dmr-1.5.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/module.xml
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/jboss-ejb-client-4.0.14.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/jboss-ejb-client-4.0.20.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb/remote/protocol/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/jboss-ejb3-ext-api-2.3.0.Final.jar
@@ -1121,40 +1128,40 @@
 %%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.5.2.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.4.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.4.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.4.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-1.4.16.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.4.16.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.4.16.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.4.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.4.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.4.12.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.4.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-1.4.16.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.4.16.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.4.16.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.4.16.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.4.12.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-1.4.16.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.5.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/jboss-jaxb-intros-1.0.3.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.6.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.9.3.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/narayana-jts-integration-5.9.5.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.9.3.Final.jar
-%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/log4j-jboss-logmanager-1.1.6.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/narayana-jts-idlj-5.9.5.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/log4j-jboss-logmanager-1.2.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/module.xml
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/main/commons-logging-jboss-logging-1.0.0.Final.jar
 %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/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.2.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/jboss-logging-3.4.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.1.7.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-2.1.11.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-2.0.6.Final.jar
+%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-2.0.7.Final.jar

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912301828.xBUISOHL074374>