You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2022/05/07 06:08:50 UTC

[syncope] branch master updated: Adjusting LICENSE & NOTICE content for upcoming releases (#342)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a46c87406 Adjusting LICENSE & NOTICE content for upcoming releases (#342)
4a46c87406 is described below

commit 4a46c874068993be68e21a5d980785d9ff153a7d
Author: Francesco Chicchiriccò <il...@users.noreply.github.com>
AuthorDate: Sat May 7 08:08:46 2022 +0200

    Adjusting LICENSE & NOTICE content for upcoming releases (#342)
---
 .../common/lib/auth/RadiusAuthModuleConf.java      |  167 ---
 .../src/test/resources/domains/MasterContent.xml   |    2 -
 .../core/persistence/jpa/inner/AuthModuleTest.java |   38 +-
 .../src/test/resources/domains/MasterContent.xml   |    2 -
 docker/console/LICENSE                             |  723 ++++------
 docker/console/NOTICE                              |  110 +-
 docker/core/LICENSE                                |  745 ++++++----
 docker/core/NOTICE                                 |  121 +-
 docker/enduser/LICENSE                             | 1018 ++++++++------
 docker/enduser/NOTICE                              |  194 ++-
 docker/sra/pom.xml                                 |    8 +
 docker/wa/LICENSE                                  | 1434 ++++++++++++++++++++
 docker/wa/NOTICE                                   |  515 +++++++
 ext/elasticsearch/client-elasticsearch/pom.xml     |    4 -
 fit/build-tools/LICENSE                            |  539 ++++----
 fit/build-tools/NOTICE                             |   52 +-
 .../apache/syncope/fit/core/AuthModuleITCase.java  |   48 +-
 pom.xml                                            |   44 +-
 sra/LICENSE                                        | 1044 ++++++++++++++
 sra/NOTICE                                         |  189 +++
 .../concepts/authenticationmodules.adoc            |    1 -
 standalone/LICENSE                                 |  921 +++++++++++--
 standalone/NOTICE                                  |  519 ++++++-
 .../bootstrap/SyncopeWAPropertySourceLocator.java  |   40 -
 wa/starter/pom.xml                                 |   12 -
 25 files changed, 6497 insertions(+), 1993 deletions(-)

diff --git a/common/am/lib/src/main/java/org/apache/syncope/common/lib/auth/RadiusAuthModuleConf.java b/common/am/lib/src/main/java/org/apache/syncope/common/lib/auth/RadiusAuthModuleConf.java
deleted file mode 100644
index 4d94b1519a..0000000000
--- a/common/am/lib/src/main/java/org/apache/syncope/common/lib/auth/RadiusAuthModuleConf.java
+++ /dev/null
@@ -1,167 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.syncope.common.lib.auth;
-
-public class RadiusAuthModuleConf implements AuthModuleConf {
-
-    private static final long serialVersionUID = -2235771400318503131L;
-
-    /**
-     * Radius protocol to use when communicating with the server.
-     */
-    private String protocol = "EAP_MSCHAPv2";
-
-    private String inetAddress;
-
-    private String sharedSecret;
-
-    private int socketTimeout;
-
-    private int authenticationPort = 1812;
-
-    private int accountingPort = 1813;
-
-    private int retries = 3;
-
-    private String nasIdentifier;
-
-    private long nasPort = -1;
-
-    private long nasPortId = -1;
-
-    private long nasRealPort = -1;
-
-    private int nasPortType = -1;
-
-    private String nasIpAddress;
-
-    private String nasIpv6Address;
-
-    public String getProtocol() {
-        return protocol;
-    }
-
-    public void setProtocol(final String protocol) {
-        this.protocol = protocol;
-    }
-
-    public int getRetries() {
-        return retries;
-    }
-
-    public void setRetries(final int retries) {
-        this.retries = retries;
-    }
-
-    public String getNasIdentifier() {
-        return nasIdentifier;
-    }
-
-    public void setNasIdentifier(final String nasIdentifier) {
-        this.nasIdentifier = nasIdentifier;
-    }
-
-    public long getNasPort() {
-        return nasPort;
-    }
-
-    public void setNasPort(final long nasPort) {
-        this.nasPort = nasPort;
-    }
-
-    public long getNasPortId() {
-        return nasPortId;
-    }
-
-    public void setNasPortId(final long nasPortId) {
-        this.nasPortId = nasPortId;
-    }
-
-    public long getNasRealPort() {
-        return nasRealPort;
-    }
-
-    public void setNasRealPort(final long nasRealPort) {
-        this.nasRealPort = nasRealPort;
-    }
-
-    public int getNasPortType() {
-        return nasPortType;
-    }
-
-    public void setNasPortType(final int nasPortType) {
-        this.nasPortType = nasPortType;
-    }
-
-    public String getNasIpAddress() {
-        return nasIpAddress;
-    }
-
-    public void setNasIpAddress(final String nasIpAddress) {
-        this.nasIpAddress = nasIpAddress;
-    }
-
-    public String getNasIpv6Address() {
-        return nasIpv6Address;
-    }
-
-    public void setNasIpv6Address(final String nasIpv6Address) {
-        this.nasIpv6Address = nasIpv6Address;
-    }
-
-    public String getInetAddress() {
-        return inetAddress;
-    }
-
-    public void setInetAddress(final String inetAddress) {
-        this.inetAddress = inetAddress;
-    }
-
-    public String getSharedSecret() {
-        return sharedSecret;
-    }
-
-    public void setSharedSecret(final String sharedSecret) {
-        this.sharedSecret = sharedSecret;
-    }
-
-    public int getSocketTimeout() {
-        return socketTimeout;
-    }
-
-    public void setSocketTimeout(final int socketTimeout) {
-        this.socketTimeout = socketTimeout;
-    }
-
-    public int getAuthenticationPort() {
-        return authenticationPort;
-    }
-
-    public void setAuthenticationPort(final int authenticationPort) {
-        this.authenticationPort = authenticationPort;
-    }
-
-    public int getAccountingPort() {
-        return accountingPort;
-    }
-
-    public void setAccountingPort(final int accountingPort) {
-        this.accountingPort = accountingPort;
-    }
-}
diff --git a/core/persistence-jpa-json/src/test/resources/domains/MasterContent.xml b/core/persistence-jpa-json/src/test/resources/domains/MasterContent.xml
index 05b0b89db3..5a26612b17 100644
--- a/core/persistence-jpa-json/src/test/resources/domains/MasterContent.xml
+++ b/core/persistence-jpa-json/src/test/resources/domains/MasterContent.xml
@@ -81,8 +81,6 @@ under the License.
               description="Static auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.StaticAuthModuleConf","users":{"syncope1": "$cynop3"}}'/>
   <AuthModule id="DefaultSyncopeAuthModule"
               description="Syncope auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.SyncopeAuthModuleConf","domain":"Master"}'/>
-  <AuthModule id="DefaultRadiusAuthModule"
-              description="Radius auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.RadiusAuthModuleConf","protocol":"PAP","inetAddress":"localhost", "sharedSecret":"testing123"}'/>
   <AuthModule id="DefaultU2FAuthModule"
               description="U2F auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.U2FAuthModuleConf","expireDevices":40}'/>
 
diff --git a/core/persistence-jpa/src/test/java/org/apache/syncope/core/persistence/jpa/inner/AuthModuleTest.java b/core/persistence-jpa/src/test/java/org/apache/syncope/core/persistence/jpa/inner/AuthModuleTest.java
index 92edeec87f..6e8c7c015a 100644
--- a/core/persistence-jpa/src/test/java/org/apache/syncope/core/persistence/jpa/inner/AuthModuleTest.java
+++ b/core/persistence-jpa/src/test/java/org/apache/syncope/core/persistence/jpa/inner/AuthModuleTest.java
@@ -34,7 +34,6 @@ import org.apache.syncope.common.lib.auth.JDBCAuthModuleConf;
 import org.apache.syncope.common.lib.auth.JaasAuthModuleConf;
 import org.apache.syncope.common.lib.auth.LDAPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.OIDCAuthModuleConf;
-import org.apache.syncope.common.lib.auth.RadiusAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SAML2IdPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.StaticAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SyncopeAuthModuleConf;
@@ -102,10 +101,6 @@ public class AuthModuleTest extends AbstractTest {
         authModule = authModuleDAO.find("DefaultU2FAuthModule");
         assertNotNull(authModule);
         assertTrue(authModule.getConf() instanceof U2FAuthModuleConf);
-
-        authModule = authModuleDAO.find("DefaultRadiusAuthModule");
-        assertNotNull(authModule);
-        assertTrue(authModule.getConf() instanceof RadiusAuthModuleConf);
     }
 
     @Test
@@ -121,7 +116,7 @@ public class AuthModuleTest extends AbstractTest {
                 authModule -> isSpecificConf(authModule.getConf(), GoogleMfaAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultGoogleMfaAuthModule")));
         assertTrue(authModules.stream().anyMatch(
-            authModule -> isSpecificConf(authModule.getConf(), DuoMfaAuthModuleConf.class)
+                authModule -> isSpecificConf(authModule.getConf(), DuoMfaAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultDuoMfaAuthModule")));
         assertTrue(authModules.stream().anyMatch(
                 authModule -> isSpecificConf(authModule.getConf(), OIDCAuthModuleConf.class)
@@ -138,9 +133,6 @@ public class AuthModuleTest extends AbstractTest {
         assertTrue(authModules.stream().anyMatch(
                 authModule -> isSpecificConf(authModule.getConf(), SyncopeAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultSyncopeAuthModule")));
-        assertTrue(authModules.stream().anyMatch(
-                authModule -> isSpecificConf(authModule.getConf(), RadiusAuthModuleConf.class)
-                && authModule.getKey().equals("DefaultRadiusAuthModule")));
         assertTrue(authModules.stream().anyMatch(
                 authModule -> isSpecificConf(authModule.getConf(), U2FAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultU2FAuthModule")));
@@ -240,17 +232,6 @@ public class AuthModuleTest extends AbstractTest {
         saveAuthModule("SAML2IdPAuthModuleTest", conf);
     }
 
-    @Test
-    public void saveWithRadiusModule() {
-        RadiusAuthModuleConf conf = new RadiusAuthModuleConf();
-        conf.setProtocol("MSCHAPv2");
-        conf.setInetAddress("1.2.3.4");
-        conf.setSharedSecret("xyz");
-        conf.setSocketTimeout(40);
-
-        saveAuthModule("RadiusAuthModuleTest", conf);
-    }
-
     @Test
     public void saveWithU2FModule() {
         U2FAuthModuleConf conf = new U2FAuthModuleConf();
@@ -327,7 +308,6 @@ public class AuthModuleTest extends AbstractTest {
         assertEquals(secretKey, DuoMfaAuthModuleConf.class.cast(found.getConf()).getSecretKey());
     }
 
-
     @Test
     public void updateWithSAML2IdPModule() {
         AuthModule module = authModuleDAO.find("DefaultSAML2IdPAuthModule");
@@ -393,22 +373,6 @@ public class AuthModuleTest extends AbstractTest {
         assertEquals(2, StaticAuthModuleConf.class.cast(found.getConf()).getUsers().size());
     }
 
-    @Test
-    public void updateWithRadiusModule() {
-        AuthModule module = authModuleDAO.find("DefaultRadiusAuthModule");
-        assertNotNull(module);
-        AuthModuleConf conf = module.getConf();
-        RadiusAuthModuleConf.class.cast(conf).setSocketTimeout(45);
-        module.setConf(conf);
-
-        module = authModuleDAO.save(module);
-        assertNotNull(module);
-        assertNotNull(module.getKey());
-        AuthModule found = authModuleDAO.find(module.getKey());
-        assertNotNull(found);
-        assertEquals(45, RadiusAuthModuleConf.class.cast(found.getConf()).getSocketTimeout());
-    }
-
     @Test
     public void updateWithU2fModule() {
         AuthModule module = authModuleDAO.find("DefaultU2FAuthModule");
diff --git a/core/persistence-jpa/src/test/resources/domains/MasterContent.xml b/core/persistence-jpa/src/test/resources/domains/MasterContent.xml
index d11af422b7..bf0cf39dc4 100644
--- a/core/persistence-jpa/src/test/resources/domains/MasterContent.xml
+++ b/core/persistence-jpa/src/test/resources/domains/MasterContent.xml
@@ -81,8 +81,6 @@ under the License.
               description="Static auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.StaticAuthModuleConf","users":{"syncope1": "$cynop3"}}'/>
   <AuthModule id="DefaultSyncopeAuthModule"
               description="Syncope auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.SyncopeAuthModuleConf","domain":"Master"}'/>
-  <AuthModule id="DefaultRadiusAuthModule"
-              description="Radius auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.RadiusAuthModuleConf","protocol":"PAP","inetAddress":"localhost", "sharedSecret":"testing123"}'/>
   <AuthModule id="DefaultU2FAuthModule"
               description="U2F auth module" jsonConf='{"_class":"org.apache.syncope.common.lib.auth.U2FAuthModuleConf","expireDevices":40}'/>
 
diff --git a/docker/console/LICENSE b/docker/console/LICENSE
index d61d9945ea..3174113765 100644
--- a/docker/console/LICENSE
+++ b/docker/console/LICENSE
@@ -242,6 +242,11 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For cglib (https://github.com/cglib/cglib):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For CodeMirror (http://codemirror.net/):
 This is licensed under the MIT license, see above.
 
@@ -252,16 +257,31 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Wicket autoconfiguration with Spring Boot (https://github.com/MarcGiffing/wicket-spring-boot):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Open JSON (https://github.com/openjson/openjson):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For JCIP Annotations (https://github.com/stephenc/jcip-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Gson (https://github.com/google/gson):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Elemental2 (https://github.com/google/elemental2):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Error Prone (https://errorprone.info/):
 This is licensed under the AL 2.0, see above.
 
@@ -282,11 +302,51 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For JsInterop Base (https://github.com/google/jsinterop-base):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For JsInterop Annotations (https://github.com/google/jsinterop-annotations):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Protocol Buffers (https://developers.google.com/protocol-buffers/):
+This is licensed under the BSD license:
+
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==
+
+For RE2/J (https://github.com/google/re2j):
+This is licensed under the BSD license, see above.
+
+==
+
 For OWASP Java HTML Sanitizer (https://owasp.org/www-project-java-html-sanitizer/):
 This is licensed under the AL 2.0, see above.
 
@@ -302,6 +362,56 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Nimbus JOSE-JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+==
+
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
+
+==
+
 For Font Awesome (http://fontawesome.io/):
 This is licensed under the MIT license, see above.
 
@@ -312,6 +422,16 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Micrometer Application Metrics (https://micrometer.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Swagger (http://swagger.io/):
 This is licensed under the AL 2.0, see above.
 
@@ -327,7 +447,7 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
 This is licensed under the EPL 1.0:
 
 Eclipse Public License - v 1.0
@@ -536,394 +656,13 @@ any resulting litigation.
 
 ==
 
-For Jakarta XML Binding (https://eclipse-ee4j.github.io/jaxb-ri/):
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
 This is licensed under the EPL 1.0, see above.
 
 ==
 
-For javax.annotation-api (https://jcp.org/en/jsr/detail?id=250):
-This is licensed under the CDDL 1.0:
-
-COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
-
-1. Definitions.
-
-1.1. "Contributor" means each individual or entity that
-creates or contributes to the creation of Modifications.
-
-1.2. "Contributor Version" means the combination of the
-Original Software, prior Modifications used by a
-Contributor (if any), and the Modifications made by that
-particular Contributor.
-
-1.3. "Covered Software" means (a) the Original Software, or
-(b) Modifications, or (c) the combination of files
-containing Original Software with files containing
-Modifications, in each case including portions thereof.
-
-1.4. "Executable" means the Covered Software in any form
-other than Source Code.
-
-1.5. "Initial Developer" means the individual or entity
-that first makes Original Software available under this
-License.
-
-1.6. "Larger Work" means a work which combines Covered
-Software or portions thereof with code not governed by the
-terms of this License.
-
-1.7. "License" means this document.
-
-1.8. "Licensable" means having the right to grant, to the
-maximum extent possible, whether at the time of the initial
-grant or subsequently acquired, any and all of the rights
-conveyed herein.
-
-1.9. "Modifications" means the Source Code and Executable
-form of any of the following:
-
-A. Any file that results from an addition to,
-deletion from or modification of the contents of a
-file containing Original Software or previous
-Modifications;
-
-B. Any new file that contains any part of the
-Original Software or previous Modification; or
-
-C. Any new file that is contributed or otherwise made
-available under the terms of this License.
-
-1.10. "Original Software" means the Source Code and
-Executable form of computer software code that is
-originally released under this License.
-
-1.11. "Patent Claims" means any patent claim(s), now owned
-or hereafter acquired, including without limitation,
-method, process, and apparatus claims, in any patent
-Licensable by grantor.
-
-1.12. "Source Code" means (a) the common form of computer
-software code in which modifications are made and (b)
-associated documentation included in or with such code.
-
-1.13. "You" (or "Your") means an individual or a legal
-entity exercising rights under, and complying with all of
-the terms of, this License. For legal entities, "You"
-includes any entity which controls, is controlled by, or is
-under common control with You. For purposes of this
-definition, "control" means (a) the power, direct or
-indirect, to cause the direction or management of such
-entity, whether by contract or otherwise, or (b) ownership
-of more than fifty percent (50%) of the outstanding shares
-or beneficial ownership of such entity.
-
-2. License Grants.
-
-2.1. The Initial Developer Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, the
-Initial Developer hereby grants You a world-wide,
-royalty-free, non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Initial Developer,
-to use, reproduce, modify, display, perform,
-sublicense and distribute the Original Software (or
-portions thereof), with or without Modifications,
-and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using or selling of Original Software, to make, have
-made, use, practice, sell, and offer for sale, and/or
-otherwise dispose of the Original Software (or
-portions thereof).
-
-(c) The licenses granted in Sections 2.1(a) and (b)
-are effective on the date Initial Developer first
-distributes or otherwise makes the Original Software
-available to a third party under the terms of this
-License.
-
-(d) Notwithstanding Section 2.1(b) above, no patent
-license is granted: (1) for code that You delete from
-the Original Software, or (2) for infringements
-caused by: (i) the modification of the Original
-Software, or (ii) the combination of the Original
-Software with other software or devices.
-
-2.2. Contributor Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, each
-Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Contributor to
-use, reproduce, modify, display, perform, sublicense
-and distribute the Modifications created by such
-Contributor (or portions thereof), either on an
-unmodified basis, with other Modifications, as
-Covered Software and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using, or selling of Modifications made by that
-Contributor either alone and/or in combination with
-its Contributor Version (or portions of such
-combination), to make, use, sell, offer for sale,
-have made, and/or otherwise dispose of: (1)
-Modifications made by that Contributor (or portions
-thereof); and (2) the combination of Modifications
-made by that Contributor with its Contributor Version
-(or portions of such combination).
-
-(c) The licenses granted in Sections 2.2(a) and
-2.2(b) are effective on the date Contributor first
-distributes or otherwise makes the Modifications
-available to a third party.
-
-(d) Notwithstanding Section 2.2(b) above, no patent
-license is granted: (1) for any code that Contributor
-has deleted from the Contributor Version; (2) for
-infringements caused by: (i) third party
-modifications of Contributor Version, or (ii) the
-combination of Modifications made by that Contributor
-with other software (except as part of the
-Contributor Version) or other devices; or (3) under
-Patent Claims infringed by Covered Software in the
-absence of Modifications made by that Contributor.
-
-3. Distribution Obligations.
-
-3.1. Availability of Source Code.
-
-Any Covered Software that You distribute or otherwise make
-available in Executable form must also be made available in
-Source Code form and that Source Code form must be
-distributed only under the terms of this License. You must
-include a copy of this License with every copy of the
-Source Code form of the Covered Software You distribute or
-otherwise make available. You must inform recipients of any
-such Covered Software in Executable form as to how they can
-obtain such Covered Software in Source Code form in a
-reasonable manner on or through a medium customarily used
-for software exchange.
-
-3.2. Modifications.
-
-The Modifications that You create or to which You
-contribute are governed by the terms of this License. You
-represent that You believe Your Modifications are Your
-original creation(s) and/or You have sufficient rights to
-grant the rights conveyed by this License.
-
-3.3. Required Notices.
-
-You must include a notice in each of Your Modifications
-that identifies You as the Contributor of the Modification.
-You may not remove or alter any copyright, patent or
-trademark notices contained within the Covered Software, or
-any notices of licensing or any descriptive text giving
-attribution to any Contributor or the Initial Developer.
-
-3.4. Application of Additional Terms.
-
-You may not offer or impose any terms on any Covered
-Software in Source Code form that alters or restricts the
-applicable version of this License or the recipients'
-rights hereunder. You may choose to offer, and to charge a
-fee for, warranty, support, indemnity or liability
-obligations to one or more recipients of Covered Software.
-However, you may do so only on Your own behalf, and not on
-behalf of the Initial Developer or any Contributor. You
-must make it absolutely clear that any such warranty,
-support, indemnity or liability obligation is offered by
-You alone, and You hereby agree to indemnify the Initial
-Developer and every Contributor for any liability incurred
-by the Initial Developer or such Contributor as a result of
-warranty, support, indemnity or liability terms You offer.
-
-3.5. Distribution of Executable Versions.
-
-You may distribute the Executable form of the Covered
-Software under the terms of this License or under the terms
-of a license of Your choice, which may contain terms
-different from this License, provided that You are in
-compliance with the terms of this License and that the
-license for the Executable form does not attempt to limit
-or alter the recipient's rights in the Source Code form
-from the rights set forth in this License. If You
-distribute the Covered Software in Executable form under a
-different license, You must make it absolutely clear that
-any terms which differ from this License are offered by You
-alone, not by the Initial Developer or Contributor. You
-hereby agree to indemnify the Initial Developer and every
-Contributor for any liability incurred by the Initial
-Developer or such Contributor as a result of any such terms
-You offer.
-
-3.6. Larger Works.
-
-You may create a Larger Work by combining Covered Software
-with other code not governed by the terms of this License
-and distribute the Larger Work as a single product. In such
-a case, You must make sure the requirements of this License
-are fulfilled for the Covered Software.
-
-4. Versions of the License.
-
-4.1. New Versions.
-
-Sun Microsystems, Inc. is the initial license steward and
-may publish revised and/or new versions of this License
-from time to time. Each version will be given a
-distinguishing version number. Except as provided in
-Section 4.3, no one other than the license steward has the
-right to modify this License.
-
-4.2. Effect of New Versions.
-
-You may always continue to use, distribute or otherwise
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. If the Initial Developer includes a
-notice in the Original Software prohibiting it from being
-distributed or otherwise made available under any
-subsequent version of the License, You must distribute and
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. Otherwise, You may also choose to
-use, distribute or otherwise make the Covered Software
-available under the terms of any subsequent version of the
-License published by the license steward.
-
-4.3. Modified Versions.
-
-When You are an Initial Developer and You want to create a
-new license for Your Original Software, You may create and
-use a modified version of this License if You: (a) rename
-the license and remove any references to the name of the
-license steward (except to note that the license differs
-from this License); and (b) otherwise make it clear that
-the license contains terms which differ from this License.
-
-5. DISCLAIMER OF WARRANTY.
-
-COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
-BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
-SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
-PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
-COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
-INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
-ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
-WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
-ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
-DISCLAIMER.
-
-6. TERMINATION.
-
-6.1. This License and the rights granted hereunder will
-terminate automatically if You fail to comply with terms
-herein and fail to cure such breach within 30 days of
-becoming aware of the breach. Provisions which, by their
-nature, must remain in effect beyond the termination of
-this License shall survive.
-
-6.2. If You assert a patent infringement claim (excluding
-declaratory judgment actions) against Initial Developer or
-a Contributor (the Initial Developer or Contributor against
-whom You assert such claim is referred to as "Participant")
-alleging that the Participant Software (meaning the
-Contributor Version where the Participant is a Contributor
-or the Original Software where the Participant is the
-Initial Developer) directly or indirectly infringes any
-patent, then any and all rights granted directly or
-indirectly to You by such Participant, the Initial
-Developer (if the Initial Developer is not the Participant)
-and all Contributors under Sections 2.1 and/or 2.2 of this
-License shall, upon 60 days notice from Participant
-terminate prospectively and automatically at the expiration
-of such 60 day notice period, unless if within such 60 day
-period You withdraw Your claim with respect to the
-Participant Software against such Participant either
-unilaterally or pursuant to a written agreement with
-Participant.
-
-6.3. In the event of termination under Sections 6.1 or 6.2
-above, all end user licenses that have been validly granted
-by You or any distributor hereunder prior to termination
-(excluding licenses granted to You by any distributor)
-shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
-INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
-COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
-LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
-CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
-LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
-STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
-COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
-INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
-LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
-INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
-APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
-NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
-CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
-APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-The Covered Software is a "commercial item," as that term is
-defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
-computer software" (as that term is defined at 48 C.F.R. $
-252.227-7014(a)(1)) and "commercial computer software
-documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
-1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
-through 227.7202-4 (June 1995), all U.S. Government End Users
-acquire Covered Software with only those rights set forth herein.
-This U.S. Government Rights clause is in lieu of, and supersedes,
-any other FAR, DFAR, or other clause or provision that addresses
-Government rights in computer software under this License.
-
-9. MISCELLANEOUS.
-
-This License represents the complete agreement concerning subject
-matter hereof. If any provision of this License is held to be
-unenforceable, such provision shall be reformed only to the
-extent necessary to make it enforceable. This License shall be
-governed by the law of the jurisdiction specified in a notice
-contained within the Original Software (except to the extent
-applicable law, if any, provides otherwise), excluding such
-jurisdiction's conflict-of-law provisions. Any litigation
-relating to this License shall be subject to the jurisdiction of
-the courts located in the jurisdiction and venue specified in a
-notice contained within the Original Software, with the losing
-party responsible for costs, including, without limitation, court
-costs and reasonable attorneys' fees and expenses. The
-application of the United Nations Convention on Contracts for the
-International Sale of Goods is expressly excluded. Any law or
-regulation which provides that the language of a contract shall
-be construed against the drafter shall not apply to this License.
-You agree that You alone are responsible for compliance with the
-United States export administration regulations (and the export
-control laws and regulation of any other countries) when You use,
-distribute or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-As between Initial Developer and the Contributors, each party is
-responsible for claims and damages arising, directly or
-indirectly, out of its utilization of rights under this License
-and You agree to work with Initial Developer and Contributors to
-distribute such responsibility on an equitable basis. Nothing
-herein is intended or shall be deemed to constitute any admission
-of liability.
+For JSR-330: Dependency Injection for Java (https://code.google.com/archive/p/atinject/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
@@ -932,11 +671,6 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For javax.ws.rs-api (https://jax-rs-spec.java.net/):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
 For Joda Time (http://www.joda.org/joda-time/):
 This is licensed under the AL 2.0, see above.
 
@@ -977,33 +711,13 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
-This is licensed under the BSD license:
-
-Redistribution and use in source and binary forms, with or without 
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice, this 
-list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice, 
-this list of conditions and the following disclaimer in the documentation 
-and/or other materials provided with the distribution.
+For MojoHaus AnimalSniffer Maven Plugin (https://github.com/mojohaus/animal-sniffer):
+This is licensed under the MIT license, see above.
 
-3. Neither the name of the copyright holder nor the names of its contributors 
-may be used to endorse or promote products derived from this software without 
-specific prior written permission.
+==
 
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
+This is licensed under the BSD license, see above.
 
 ==
 
@@ -1017,7 +731,152 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Java Hamcrest (http://hamcrest.org/JavaHamcrest/):
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
+==
+
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For ASM (http://asm.ow2.org/):
 This is licensed under the BSD license, see above.
 
 ==
@@ -1027,7 +886,7 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Spring Framework (http://projects.spring.io/spring-framework/):
+For Spring (https://spring.io/projects):
 This is licensed under the AL 2.0, see above.
 
 ==
@@ -1042,25 +901,45 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For Inputmask (https://github.com/RobinHerbots/Inputmask):
+This is licensed under the MIT license, see above.
+
+==
+
+For Summernote (https://summernote.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For WicketStuff (https://wicketstuff.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For SnakeYAML (http://www.snakeyaml.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For spin.js (http://spin.js.org/):
+For popper.js (https://github.com/FezVrasta/popper.js):
 This is licensed under the MIT license, see above.
 
 ==
 
-For typeahead.js (http://twitter.github.io/typeahead.js/):
+For spin.js (http://spin.js.org/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For Wicket-Bootstrap (http://wb.agilecoders.de/):
-This is licensed under the AL 2.0, see above.
+For Tempus Dominus Bootstrap 4 Datetime Picker (https://github.com/tempusdominus/bootstrap-4):
+This is licensed under the MIT license, see above.
 
 ==
 
-For X-editable (http://vitalets.github.io/x-editable/):
+For typeahead.js (http://twitter.github.io/typeahead.js/):
 This is licensed under the MIT license, see above.
+
+==
+
+For Wicket-Bootstrap (http://wb.agilecoders.de/):
+This is licensed under the AL 2.0, see above.
diff --git a/docker/console/NOTICE b/docker/console/NOTICE
index 31bfec0e3c..604e4db120 100644
--- a/docker/console/NOTICE
+++ b/docker/console/NOTICE
@@ -47,6 +47,11 @@ Copyright (c) 2008 Google Inc.
 
 ==
 
+This product includes software developed by Elemental2
+Copyright 2018 Google Inc.
+
+==
+
 This product includes software developed by Error Prone.
 
 ==
@@ -65,11 +70,26 @@ Copyright (c) 2009 The Closure Compiler Authors.
 
 ==
 
+This product includes software developed by JsInterop Base
+Copyright 2017 Google Inc.
+
+==
+
 This product includes software developed by JsInterop Annotations.
 Copyright (c) 2019 Google Inc. All Rights Reserved.
 
 ==
 
+This product includes software developed by Protocol Buffers
+Copyright 2008 Google Inc. All rights reserved.
+
+==
+
+This product includes software developed by RE2/J
+Copyright (c) 2009 The Go Authors. All rights reserved.
+
+==
+
 This product includes software developed by OWASP Java HTML Sanitizer.
 Copyright (c) 2011, Mike Samuel
 All rights reserved.
@@ -81,11 +101,46 @@ Copyright 2012-2013 Sebastien Briquet
 
 ==
 
+This product includes software developed by Nimbus JOSE-JWT
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
+
+==
+
 This product includes software developed by the google-diff-match-patch project.
 Copyright (c) 2006 Google Inc.
 
 ==
 
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
+
+==
+
 This product includes software developed by the Swagger project.
 Copyright 2016 SmartBear Software
 
@@ -101,18 +156,14 @@ Copyright (c) 2011 Piotr Rochala (http://rocha.la)
 
 ==
 
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
-
-==
-
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
+This product includes software developed by Apereo CAS
+Copyright 2022, The Apereo Foundation
 
 ==
 
-This product includs software developed by Oracle.
-Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
 
 ==
 
@@ -121,11 +172,6 @@ Copyright (c) Red Hat, Inc., Emmanuel Bernard
 
 ==
 
-This product includes software developed by the JAX-RS project.
-Copyright (c) 2014, Oracle Corporation and/or its affiliates. All rights reserved.
-
-==
-
 This product includes software developed by the Joda Time project.
 Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
 
@@ -161,6 +207,11 @@ Copyright (c) 2004-present by the Checker Framework developers
 
 ==
 
+This product includes software developed by MojoHaus AnimalSniffer Maven Plugin
+Copyright (c) 2009, codehaus.org
+
+==
+
 This product includes software developed by the Stax 2 Extension API Project.
 
 ==
@@ -174,8 +225,9 @@ Copyright (c) 2015 Jakub Danek
 
 ==
 
-This product includes software developed by Java Hamcrest.
-Copyright (c) 2000-2015 www.hamcrest.org
+This product includes software developed by the ASM project.
+Copyright (c) 2000-2011 INRIA, France Telecom
+All rights reserved.
 
 ==
 
@@ -185,7 +237,7 @@ Copyright (c) 2004-2016 QOS.ch.
 ==
 
 This product includes software developed by SpringSource.
-Copyright (c) 2004-2016 SpringSource
+Copyright (c) 2004-2022 SpringSource
 All rights reserved.
 
 ==
@@ -200,9 +252,29 @@ Copyright (c) JS Foundation and other contributors
 
 ==
 
+This product includes software developed by Inputmask
+Copyright (c) 2010 - 2018 Robin Herbots
+
+==
+
+This product includes software developed by Summernote
+Copyright (c) 2015~ Summernote Team (https://github.com/orgs/summernote/people)
+
+==
+
+This product includes software developed by WicketStuff
+Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
+
+==
+
 This product includes software developed by the SnakeYAML project.
 
 ==
 
-This product includes software developed by the X-editable project.
-Copyright (c) 2012 Vitaliy Potapov
+This product includes software developed by popper.js
+Copyright (c) 2021 Floating UI contributors
+
+==
+
+This product includes software developed by Tempus Dominus Bootstrap 4 Datetime Picker
+Copyright (c) 2016 Tempus Dominus
diff --git a/docker/core/LICENSE b/docker/core/LICENSE
index eaa46a352b..d15a395d4c 100644
--- a/docker/core/LICENSE
+++ b/docker/core/LICENSE
@@ -203,6 +203,11 @@
 
 ==
 
+For JCommander (https://jcommander.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Jackson (http://wiki.fasterxml.com/JacksonHome):
 This is licensed under the AL 2.0, see above.
 
@@ -218,6 +223,11 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For JCIP Annotations (https://github.com/stephenc/jcip-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Error Prone (https://errorprone.info/):
 This is licensed under the AL 2.0, see above.
 
@@ -238,6 +248,235 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For mchange-commons-java (https://github.com/swaldman/mchange-commons-java):
+This is licensed under the EPL 1.0:
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and documentation
+   distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+    i) changes to the Program, and
+   ii) additions to the Program;
+
+   where such changes and/or additions to the Program originate from and are
+   distributed by that particular Contributor. A Contribution 'originates'
+   from a Contributor if it was added to the Program by such Contributor
+   itself or anyone acting on such Contributor's behalf. Contributions do not
+   include additions to the Program which: (i) are separate modules of
+   software distributed in conjunction with the Program under their own
+   license agreement, and (ii) are not derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+  a) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free copyright license to
+     reproduce, prepare derivative works of, publicly display, publicly
+     perform, distribute and sublicense the Contribution of such Contributor,
+     if any, and such derivative works, in source code and object code form.
+  b) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free patent license under
+     Licensed Patents to make, use, sell, offer to sell, import and otherwise
+     transfer the Contribution of such Contributor, if any, in source code and
+     object code form. This patent license shall apply to the combination of
+     the Contribution and the Program if, at the time the Contribution is
+     added by the Contributor, such addition of the Contribution causes such
+     combination to be covered by the Licensed Patents. The patent license
+     shall not apply to any other combinations which include the Contribution.
+     No hardware per se is licensed hereunder.
+  c) Recipient understands that although each Contributor grants the licenses
+     to its Contributions set forth herein, no assurances are provided by any
+     Contributor that the Program does not infringe the patent or other
+     intellectual property rights of any other entity. Each Contributor
+     disclaims any liability to Recipient for claims brought by any other
+     entity based on infringement of intellectual property rights or
+     otherwise. As a condition to exercising the rights and licenses granted
+     hereunder, each Recipient hereby assumes sole responsibility to secure
+     any other intellectual property rights needed, if any. For example, if a
+     third party patent license is required to allow Recipient to distribute
+     the Program, it is Recipient's responsibility to acquire that license
+     before distributing the Program.
+  d) Each Contributor represents that to its knowledge it has sufficient
+     copyright rights in its Contribution, if any, to grant the copyright
+     license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+  a) it complies with the terms and conditions of this Agreement; and
+  b) its license agreement:
+      i) effectively disclaims on behalf of all Contributors all warranties
+         and conditions, express and implied, including warranties or
+         conditions of title and non-infringement, and implied warranties or
+         conditions of merchantability and fitness for a particular purpose;
+     ii) effectively excludes on behalf of all Contributors all liability for
+         damages, including direct, indirect, special, incidental and
+         consequential damages, such as lost profits;
+    iii) states that any provisions which differ from this Agreement are
+         offered by that Contributor alone and not by any other party; and
+     iv) states that source code for the Program is available from such
+         Contributor, and informs licensees how to obtain it in a reasonable
+         manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+  a) it must be made available under this Agreement; and
+  b) a copy of this Agreement must be included with each copy of the Program.
+     Contributors may not remove or alter any copyright notices contained
+     within the Program.
+
+Each Contributor must identify itself as the originator of its Contribution,
+if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore,
+if a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses,
+damages and costs (collectively "Losses") arising from claims, lawsuits and
+other legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such Commercial
+Contributor in connection with its distribution of the Program in a commercial
+product offering. The obligations in this section do not apply to any claims
+or Losses relating to any actual or alleged intellectual property
+infringement. In order to qualify, an Indemnified Contributor must:
+a) promptly notify the Commercial Contributor in writing of such claim, and
+b) allow the Commercial Contributor to control, and cooperate with the
+Commercial Contributor in, the defense and any related settlement
+negotiations. The Indemnified Contributor may participate in any such claim at
+its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If
+that Commercial Contributor then makes performance claims, or offers
+warranties related to Product X, those performance claims and warranties are
+such Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to the
+risks and costs of program errors, compliance with applicable laws, damage to
+or loss of data, programs or equipment, and unavailability or interruption of
+operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
+LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
+EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of the
+remainder of the terms of this Agreement, and without further action by the
+parties hereto, such provision shall be reformed to the minimum extent
+necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a
+cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+(excluding combinations of the Program with other software or hardware)
+infringes such Recipient's patent(s), then such Recipient's rights granted
+under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to
+time. No one other than the Agreement Steward has the right to modify this
+Agreement. The Eclipse Foundation is the initial Agreement Steward. The
+Eclipse Foundation may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement will
+be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version of the
+Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly
+stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
+licenses to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in the
+Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial in
+any resulting litigation.
+
+==
+
+For Nimbus Content Type (https://bitbucket.org/connect2id/nimbus-content-type/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus Language Tags (https://bitbucket.org/connect2id/nimbus-language-tags/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus JOSE-JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OAuth 2.0 SDK with OpenID Connect extensions (https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For JAX-B (http://jaxb.java.net/):
 This is licensed under the CDDL 1.0:
 
@@ -622,6 +861,36 @@ distribute such responsibility on an equitable basis. Nothing
 herein is intended or shall be deemed to constitute any admission
 of liability.
 
+==
+
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
 ==
 
 For QDox (https://github.com/paul-hammant/qdox):
@@ -629,38 +898,28 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For HikariCP (http://brettwooldridge.github.io/HikariCP/):
+For UnboundID LDAP SDK for Java (https://github.com/pingidentity/ldapsdk):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For highlight.js (http://highlightjs.org/):
-This is licensed under the BSD license:
+For HikariCP (http://brettwooldridge.github.io/HikariCP/):
+This is licensed under the AL 2.0, see above.
 
-Redistribution and use in source and binary forms, with or without 
-modification, are permitted provided that the following conditions are met:
+==
 
-1. Redistributions of source code must retain the above copyright notice, this 
-list of conditions and the following disclaimer.
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
 
-2. Redistributions in binary form must reproduce the above copyright notice, 
-this list of conditions and the following disclaimer in the documentation 
-and/or other materials provided with the distribution.
+==
 
-3. Neither the name of the copyright holder nor the names of its contributors 
-may be used to endorse or promote products derived from this software without 
-specific prior written permission.
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
 
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
 
 ==
 
@@ -693,221 +952,32 @@ This is licensed under the MIT license:
 
 ==
 
-For Swagger (http://swagger.io/):
+For Micrometer Application Metrics (https://micrometer.io/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
-This is licensed under the EPL 1.0:
-
-Eclipse Public License - v 1.0
-
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
-LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
-CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
-1. DEFINITIONS
-
-"Contribution" means:
-
-a) in the case of the initial Contributor, the initial code and documentation
-   distributed under this Agreement, and
-b) in the case of each subsequent Contributor:
-    i) changes to the Program, and
-   ii) additions to the Program;
-
-   where such changes and/or additions to the Program originate from and are
-   distributed by that particular Contributor. A Contribution 'originates'
-   from a Contributor if it was added to the Program by such Contributor
-   itself or anyone acting on such Contributor's behalf. Contributions do not
-   include additions to the Program which: (i) are separate modules of
-   software distributed in conjunction with the Program under their own
-   license agreement, and (ii) are not derivative works of the Program.
-
-"Contributor" means any person or entity that distributes the Program.
-
-"Licensed Patents" mean patent claims licensable by a Contributor which are
-necessarily infringed by the use or sale of its Contribution alone or when
-combined with the Program.
-
-"Program" means the Contributions distributed in accordance with this
-Agreement.
-
-"Recipient" means anyone who receives the Program under this Agreement,
-including all Contributors.
-
-2. GRANT OF RIGHTS
-  a) Subject to the terms of this Agreement, each Contributor hereby grants
-     Recipient a non-exclusive, worldwide, royalty-free copyright license to
-     reproduce, prepare derivative works of, publicly display, publicly
-     perform, distribute and sublicense the Contribution of such Contributor,
-     if any, and such derivative works, in source code and object code form.
-  b) Subject to the terms of this Agreement, each Contributor hereby grants
-     Recipient a non-exclusive, worldwide, royalty-free patent license under
-     Licensed Patents to make, use, sell, offer to sell, import and otherwise
-     transfer the Contribution of such Contributor, if any, in source code and
-     object code form. This patent license shall apply to the combination of
-     the Contribution and the Program if, at the time the Contribution is
-     added by the Contributor, such addition of the Contribution causes such
-     combination to be covered by the Licensed Patents. The patent license
-     shall not apply to any other combinations which include the Contribution.
-     No hardware per se is licensed hereunder.
-  c) Recipient understands that although each Contributor grants the licenses
-     to its Contributions set forth herein, no assurances are provided by any
-     Contributor that the Program does not infringe the patent or other
-     intellectual property rights of any other entity. Each Contributor
-     disclaims any liability to Recipient for claims brought by any other
-     entity based on infringement of intellectual property rights or
-     otherwise. As a condition to exercising the rights and licenses granted
-     hereunder, each Recipient hereby assumes sole responsibility to secure
-     any other intellectual property rights needed, if any. For example, if a
-     third party patent license is required to allow Recipient to distribute
-     the Program, it is Recipient's responsibility to acquire that license
-     before distributing the Program.
-  d) Each Contributor represents that to its knowledge it has sufficient
-     copyright rights in its Contribution, if any, to grant the copyright
-     license set forth in this Agreement.
-
-3. REQUIREMENTS
-
-A Contributor may choose to distribute the Program in object code form under
-its own license agreement, provided that:
-
-  a) it complies with the terms and conditions of this Agreement; and
-  b) its license agreement:
-      i) effectively disclaims on behalf of all Contributors all warranties
-         and conditions, express and implied, including warranties or
-         conditions of title and non-infringement, and implied warranties or
-         conditions of merchantability and fitness for a particular purpose;
-     ii) effectively excludes on behalf of all Contributors all liability for
-         damages, including direct, indirect, special, incidental and
-         consequential damages, such as lost profits;
-    iii) states that any provisions which differ from this Agreement are
-         offered by that Contributor alone and not by any other party; and
-     iv) states that source code for the Program is available from such
-         Contributor, and informs licensees how to obtain it in a reasonable
-         manner on or through a medium customarily used for software exchange.
-
-When the Program is made available in source code form:
-
-  a) it must be made available under this Agreement; and
-  b) a copy of this Agreement must be included with each copy of the Program.
-     Contributors may not remove or alter any copyright notices contained
-     within the Program.
-
-Each Contributor must identify itself as the originator of its Contribution,
-if
-any, in a manner that reasonably allows subsequent Recipients to identify the
-originator of the Contribution.
-
-4. COMMERCIAL DISTRIBUTION
-
-Commercial distributors of software may accept certain responsibilities with
-respect to end users, business partners and the like. While this license is
-intended to facilitate the commercial use of the Program, the Contributor who
-includes the Program in a commercial product offering should do so in a manner
-which does not create potential liability for other Contributors. Therefore,
-if a Contributor includes the Program in a commercial product offering, such
-Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
-every other Contributor ("Indemnified Contributor") against any losses,
-damages and costs (collectively "Losses") arising from claims, lawsuits and
-other legal actions brought by a third party against the Indemnified
-Contributor to the extent caused by the acts or omissions of such Commercial
-Contributor in connection with its distribution of the Program in a commercial
-product offering. The obligations in this section do not apply to any claims
-or Losses relating to any actual or alleged intellectual property
-infringement. In order to qualify, an Indemnified Contributor must:
-a) promptly notify the Commercial Contributor in writing of such claim, and
-b) allow the Commercial Contributor to control, and cooperate with the
-Commercial Contributor in, the defense and any related settlement
-negotiations. The Indemnified Contributor may participate in any such claim at
-its own expense.
-
-For example, a Contributor might include the Program in a commercial product
-offering, Product X. That Contributor is then a Commercial Contributor. If
-that Commercial Contributor then makes performance claims, or offers
-warranties related to Product X, those performance claims and warranties are
-such Commercial Contributor's responsibility alone. Under this section, the
-Commercial Contributor would have to defend claims against the other
-Contributors related to those performance claims and warranties, and if a
-court requires any other Contributor to pay any damages as a result, the
-Commercial Contributor must pay those damages.
-
-5. NO WARRANTY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
-IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
-NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
-Recipient is solely responsible for determining the appropriateness of using
-and distributing the Program and assumes all risks associated with its
-exercise of rights under this Agreement , including but not limited to the
-risks and costs of program errors, compliance with applicable laws, damage to
-or loss of data, programs or equipment, and unavailability or interruption of
-operations.
-
-6. DISCLAIMER OF LIABILITY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
-CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
-LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
-EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
-OF SUCH DAMAGES.
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
 
-7. GENERAL
+==
 
-If any provision of this Agreement is invalid or unenforceable under
-applicable law, it shall not affect the validity or enforceability of the
-remainder of the terms of this Agreement, and without further action by the
-parties hereto, such provision shall be reformed to the minimum extent
-necessary to make such provision valid and enforceable.
+For Swagger (http://swagger.io/):
+This is licensed under the AL 2.0, see above.
 
-If Recipient institutes patent litigation against any entity (including a
-cross-claim or counterclaim in a lawsuit) alleging that the Program itself
-(excluding combinations of the Program with other software or hardware)
-infringes such Recipient's patent(s), then such Recipient's rights granted
-under Section 2(b) shall terminate as of the date such litigation is filed.
+==
 
-All Recipient's rights under this Agreement shall terminate if it fails to
-comply with any of the material terms or conditions of this Agreement and does
-not cure such failure in a reasonable period of time after becoming aware of
-such noncompliance. If all Recipient's rights under this Agreement terminate,
-Recipient agrees to cease use and distribution of the Program as soon as
-reasonably practicable. However, Recipient's obligations under this Agreement
-and any licenses granted by Recipient relating to the Program shall continue
-and survive.
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0, see above.
 
-Everyone is permitted to copy and distribute copies of this Agreement, but in
-order to avoid inconsistency the Agreement is copyrighted and may only be
-modified in the following manner. The Agreement Steward reserves the right to
-publish new versions (including revisions) of this Agreement from time to
-time. No one other than the Agreement Steward has the right to modify this
-Agreement. The Eclipse Foundation is the initial Agreement Steward. The
-Eclipse Foundation may assign the responsibility to serve as the Agreement
-Steward to a suitable separate entity. Each new version of the Agreement will
-be given a distinguishing version number. The Program (including
-Contributions) may always be distributed subject to the version of the
-Agreement under which it was received. In addition, after a new version of the
-Agreement is published, Contributor may elect to distribute the Program
-(including its Contributions) under the new version. Except as expressly
-stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
-licenses to the intellectual property of any Contributor under this Agreement,
-whether expressly, by implication, estoppel or otherwise. All rights in the
-Program not expressly granted under this Agreement are reserved.
+==
 
-This Agreement is governed by the laws of the State of New York and the
-intellectual property laws of the United States of America. No party to this
-Agreement will bring a legal action under this Agreement more than one year
-after the cause of action arose. Each party waives its rights to a jury trial in
-any resulting litigation.
+For Jakarta Persistence project(https://github.com/eclipse-ee4j/jpa-api):
+This is licensed under the EPL 1.0, see above.
 
 ==
 
-For Jakarta XML Binding (https://eclipse-ee4j.github.io/jaxb-ri/):
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
 This is licensed under the EPL 1.0, see above.
 
 ==
@@ -922,38 +992,53 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For javax.ws.rs-api (https://jax-rs-spec.java.net/):
-This is licensed under the CDDL 1.0, see above.
+For Joda Time (http://www.joda.org/joda-time/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For Joda Time (http://www.joda.org/joda-time/):
+For json-smart-v2 (https://github.com/netplex/json-smart-v2):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For jQuery (http://jquery.com/):
-This is licensed under the MIT license, see above.
+For Shibboleth (https://shibboleth.net/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For jQuery UI (http://jqueryui.com/):
-This is licensed under the MIT license, see above.
+For SERP (http://serp.sourceforge.net/):
+This is licensed under the BSD license:
 
-==
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
 
-For Ehcache (http://ehcache.org/):
-This is licensed under the AL 2.0, see above.
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
 
-==
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
 
-For Shibboleth (https://shibboleth.net/):
-This is licensed under the AL 2.0, see above.
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 ==
 
-For SERP (http://serp.sourceforge.net/):
-This is licensed under the BSD license, see above.
+For Spymemcached (https://github.com/couchbase/spymemcached):
+This is licensed under the AL 2.0, see above.
 
 ==
 
@@ -982,6 +1067,11 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For MojoHaus AnimalSniffer Maven Plugin (https://github.com/mojohaus/animal-sniffer):
+This is licensed under the MIT license, see above.
+
+==
+
 For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
 This is licensed under the BSD license, see above.
 
@@ -1000,6 +1090,151 @@ This is licensed under the AL 2.0, see above.
 For Flowable (http://www.flowable.org/):
 This is licensed under the AL 2.0, see above.
 
+==
+
+For Jakarta JSON Processing (https://projects.eclipse.org/projects/ee4j.jsonp):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
 ==
 
 For jasypt (http://www.jasypt.org/):
@@ -1012,6 +1247,16 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Ldaptive Java Library (https://www.ldaptive.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Liquibase (https://www.liquibase.org/):
 This is licensed under the AL 2.0, see above.
 
@@ -1027,22 +1272,32 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For Quartz Scheduler (http://quartz-scheduler.org/):
+For ASM (http://asm.ow2.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Reactive Streams (https://www.pac4j.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Simple Logging Facade for Java - SLF4J (http://www.slf4j.org/):
-This is licensed under the MIT license, see above.
+For Passay (https://www.passay.org/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For Spring Framework (http://projects.spring.io/spring-framework/):
+For Quartz Scheduler (http://quartz-scheduler.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Spring Security (http://projects.spring.io/spring-security/):
+For Simple Logging Facade for Java - SLF4J (http://www.slf4j.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Spring (https://spring.io/projects):
 This is licensed under the AL 2.0, see above.
 
 ==
diff --git a/docker/core/NOTICE b/docker/core/NOTICE
index 85b8b06e88..d5638cd52d 100644
--- a/docker/core/NOTICE
+++ b/docker/core/NOTICE
@@ -35,22 +35,67 @@ This product includes software developed by J2ObjC: Java to Objective-C Translat
 
 ==
 
+This product includes software developed by mchange-commons-java
+Copyright (C) 2015 Machinery For Change, Inc.
+
+==
+
+This product includes software developed by Nimbus Content Type
+Copyright 2020, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus Language Tags
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus JOSE-JWT
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by OAuth 2.0 SDK with OpenID Connect extensions
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
 This product includes software developed by the JAXB project.
 Copyright (c) 2013-2016 The JAXB project.
 
 ==
 
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
 This product includes software developed by QDox.
 Copyright 2002-2009 Joe Walnes and QDox Project Team
 
 ==
 
+This product includes software developed by UnboundID LDAP SDK for Java
+Copyright 2007-2022 Ping Identity Corporation
+
+==
+
 This product includes software developed by the HikariCP project.
 
 ==
 
-This product includes the Javascript syntax highlighter.
-Copyright (c) 2006, Ivan Sagalaev
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
 
 ==
 
@@ -64,53 +109,49 @@ Copyright (c) 2020 Luke Hutchison
 
 ==
 
-This product includes software developed by the Swagger project.
-Copyright 2016 SmartBear Software
-
-==
-
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
 
 ==
 
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
 
 ==
 
-This product includs software developed by Oracle.
-Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
+This product includes software developed by the Swagger project.
+Copyright 2016 SmartBear Software
 
 ==
 
-This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
-Copyright (c) Red Hat, Inc., Emmanuel Bernard
+This product includes software developed by Apereo CAS
+Copyright 2022, The Apereo Foundation
 
 ==
 
-This product includes software developed by the JAX-RS project.
-Copyright (c) 2014, Oracle Corporation and/or its affiliates. All rights reserved.
+This product includes software produced and maintained by Jakarta Persistence project
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes software developed by the Joda Time project.
-Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
 
 ==
 
-This product includes the jQuery Core JavaScript Library.
-Copyright 2007, 2016 jQuery Foundation and other contributors.
+This product includs software developed by Oracle.
+Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
 
 ==
 
-This product includes the jQuery UI JavaScript Library.
-Copyright 2007, 2015 jQuery Foundation and other contributors.
+This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
+Copyright (c) Red Hat, Inc., Emmanuel Bernard
 
 ==
 
-This product includes software developed by Terracotta. Inc.
-Ehcache source code and documentation are Copyright (c) Terracotta, Inc.
+This product includes software developed by the Joda Time project.
+Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
 
 ==
 
@@ -127,7 +168,7 @@ Copyright 2011-2016 Tirasa S.r.l. All rights reserved.
 ==
 
 This product includes software developed by the ANTLR project.
-Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
+Copyright (c) 2012 Terence Parr and Sam Harwell. All rights reserved.
 
 ==
 
@@ -146,6 +187,11 @@ Copyright (c) 2004-present by the Checker Framework developers
 
 ==
 
+This product includes software developed by MojoHaus AnimalSniffer Maven Plugin
+Copyright (c) 2009, codehaus.org
+
+==
+
 This product includes software developed by the Stax 2 Extension API Project.
 
 ==
@@ -158,6 +204,11 @@ This product includes software developed by the Flowable project.
 
 ==
 
+This product includes software produced and maintained by Jakarta JSON Processing
+All content is the property of the respective authors or their employers.
+
+==
+
 This project includes software developed by the Jasypt project.
 Copyright (c) 2014 The JASYPT team. All Rights Reserved
 
@@ -168,6 +219,11 @@ Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
 
 ==
 
+This product includes software developed by Ldaptive Java Library
+Copyright (C) 2003-2021 Virginia Tech. All Rights Reserved.
+
+==
+
 This product includes software developed by the Liquibase project.
 
 ==
@@ -180,6 +236,17 @@ This product includes software developed by the Shibboleth project.
 
 ==
 
+This product includes software developed by the ASM project.
+Copyright (c) 2000-2011 INRIA, France Telecom
+All rights reserved.
+
+==
+
+This product includes software developed by Passay
+Copyright (C) 2003-2022 Virginia Tech. All rights reserved.
+
+==
+
 This product includes software developed by Terracotta. Inc.
 Quartz Scheduler source code and documentation are Copyright (c) Terracotta, Inc.
 
@@ -191,7 +258,7 @@ Copyright (c) 2004-2016 QOS.ch.
 ==
 
 This product includes software developed by SpringSource.
-Copyright (c) 2004-2016 SpringSource
+Copyright (c) 2004-2022 SpringSource
 All rights reserved.
 
 ==
diff --git a/docker/enduser/LICENSE b/docker/enduser/LICENSE
index ab3404f424..eac6345234 100644
--- a/docker/enduser/LICENSE
+++ b/docker/enduser/LICENSE
@@ -203,409 +203,197 @@
 
 ==
 
-For Bootstrap (http://getbootstrap.com/):
+For Animate.css (http://daneden.github.io/animate.css/):
+This is licensed under the MIT license:
+
+ Permission is hereby granted, free  of charge, to any person obtaining
+ a  copy  of this  software  and  associated  documentation files  (the
+ "Software"), to  deal in  the Software without  restriction, including
+ without limitation  the rights to  use, copy, modify,  merge, publish,
+ distribute,  sublicense, and/or sell  copies of  the Software,  and to
+ permit persons to whom the Software  is furnished to do so, subject to
+ the following conditions:
+ 
+ The  above  copyright  notice  and  this permission  notice  shall  be
+ included in all copies or substantial portions of the Software.
+ 
+ THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
+ EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
+ MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+==
+
+For args4j (http://args4j.kohsuke.org):
 This is licensed under the MIT license, see above.
 
 ==
 
-For bootstrap-select (http://silviomoreto.github.io/bootstrap-select/):
+For Bootbox.js (http://bootboxjs.com/):
 This is licensed under the MIT license, see above.
 
 ==
 
+For Bootstrap (http://getbootstrap.com/):
+This is licensed under the MIT license, see above.
+
+==
+
+For cglib (https://github.com/cglib/cglib):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Jackson (http://wiki.fasterxml.com/JacksonHome):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Wicket autoconfiguration with Spring Boot (https://github.com/MarcGiffing/wicket-spring-boot):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Open JSON (https://github.com/openjson/openjson):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Gson (https://github.com/google/gson):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Elemental2 (https://github.com/google/elemental2):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Error Prone (https://errorprone.info/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Guava (https://github.com/google/guava):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For J2ObjC: Java to Objective-C Translator and Runtime (http://j2objc.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Google Closure Compiler (https://developers.google.com/closure/compiler/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JsInterop Base (https://github.com/google/jsinterop-base):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JsInterop Annotations (https://github.com/google/jsinterop-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Protocol Buffers (https://developers.google.com/protocol-buffers/):
+This is licensed under the BSD license:
+
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==
+
+For RE2/J (https://github.com/google/re2j):
+This is licensed under the BSD license, see above.
+
+==
+
+For OWASP Java HTML Sanitizer (https://owasp.org/www-project-java-html-sanitizer/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Wicket - jQuery UI (http://www.7thweb.net/wicket-jquery-ui/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For LMAX Disruptor (https://lmax-exchange.github.io/disruptor/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For JAX-B (http://jaxb.java.net/):
-This is licensed under the CDDL 1.0:
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
 
-COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-1. Definitions.
 
-1.1. "Contributor" means each individual or entity that
-creates or contributes to the creation of Modifications.
+==
 
-1.2. "Contributor Version" means the combination of the
-Original Software, prior Modifications used by a
-Contributor (if any), and the Modifications made by that
-particular Contributor.
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
 
-1.3. "Covered Software" means (a) the Original Software, or
-(b) Modifications, or (c) the combination of files
-containing Original Software with files containing
-Modifications, in each case including portions thereof.
+==
 
-1.4. "Executable" means the Covered Software in any form
-other than Source Code.
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
 
-1.5. "Initial Developer" means the individual or entity
-that first makes Original Software available under this
-License.
+==
 
-1.6. "Larger Work" means a work which combines Covered
-Software or portions thereof with code not governed by the
-terms of this License.
-
-1.7. "License" means this document.
-
-1.8. "Licensable" means having the right to grant, to the
-maximum extent possible, whether at the time of the initial
-grant or subsequently acquired, any and all of the rights
-conveyed herein.
-
-1.9. "Modifications" means the Source Code and Executable
-form of any of the following:
-
-A. Any file that results from an addition to,
-deletion from or modification of the contents of a
-file containing Original Software or previous
-Modifications;
-
-B. Any new file that contains any part of the
-Original Software or previous Modification; or
-
-C. Any new file that is contributed or otherwise made
-available under the terms of this License.
-
-1.10. "Original Software" means the Source Code and
-Executable form of computer software code that is
-originally released under this License.
-
-1.11. "Patent Claims" means any patent claim(s), now owned
-or hereafter acquired, including without limitation,
-method, process, and apparatus claims, in any patent
-Licensable by grantor.
-
-1.12. "Source Code" means (a) the common form of computer
-software code in which modifications are made and (b)
-associated documentation included in or with such code.
-
-1.13. "You" (or "Your") means an individual or a legal
-entity exercising rights under, and complying with all of
-the terms of, this License. For legal entities, "You"
-includes any entity which controls, is controlled by, or is
-under common control with You. For purposes of this
-definition, "control" means (a) the power, direct or
-indirect, to cause the direction or management of such
-entity, whether by contract or otherwise, or (b) ownership
-of more than fifty percent (50%) of the outstanding shares
-or beneficial ownership of such entity.
-
-2. License Grants.
-
-2.1. The Initial Developer Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, the
-Initial Developer hereby grants You a world-wide,
-royalty-free, non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Initial Developer,
-to use, reproduce, modify, display, perform,
-sublicense and distribute the Original Software (or
-portions thereof), with or without Modifications,
-and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using or selling of Original Software, to make, have
-made, use, practice, sell, and offer for sale, and/or
-otherwise dispose of the Original Software (or
-portions thereof).
-
-(c) The licenses granted in Sections 2.1(a) and (b)
-are effective on the date Initial Developer first
-distributes or otherwise makes the Original Software
-available to a third party under the terms of this
-License.
-
-(d) Notwithstanding Section 2.1(b) above, no patent
-license is granted: (1) for code that You delete from
-the Original Software, or (2) for infringements
-caused by: (i) the modification of the Original
-Software, or (ii) the combination of the Original
-Software with other software or devices.
-
-2.2. Contributor Grant.
-
-Conditioned upon Your compliance with Section 3.1 below and
-subject to third party intellectual property claims, each
-Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than
-patent or trademark) Licensable by Contributor to
-use, reproduce, modify, display, perform, sublicense
-and distribute the Modifications created by such
-Contributor (or portions thereof), either on an
-unmodified basis, with other Modifications, as
-Covered Software and/or as part of a Larger Work; and
-
-(b) under Patent Claims infringed by the making,
-using, or selling of Modifications made by that
-Contributor either alone and/or in combination with
-its Contributor Version (or portions of such
-combination), to make, use, sell, offer for sale,
-have made, and/or otherwise dispose of: (1)
-Modifications made by that Contributor (or portions
-thereof); and (2) the combination of Modifications
-made by that Contributor with its Contributor Version
-(or portions of such combination).
-
-(c) The licenses granted in Sections 2.2(a) and
-2.2(b) are effective on the date Contributor first
-distributes or otherwise makes the Modifications
-available to a third party.
-
-(d) Notwithstanding Section 2.2(b) above, no patent
-license is granted: (1) for any code that Contributor
-has deleted from the Contributor Version; (2) for
-infringements caused by: (i) third party
-modifications of Contributor Version, or (ii) the
-combination of Modifications made by that Contributor
-with other software (except as part of the
-Contributor Version) or other devices; or (3) under
-Patent Claims infringed by Covered Software in the
-absence of Modifications made by that Contributor.
-
-3. Distribution Obligations.
-
-3.1. Availability of Source Code.
-
-Any Covered Software that You distribute or otherwise make
-available in Executable form must also be made available in
-Source Code form and that Source Code form must be
-distributed only under the terms of this License. You must
-include a copy of this License with every copy of the
-Source Code form of the Covered Software You distribute or
-otherwise make available. You must inform recipients of any
-such Covered Software in Executable form as to how they can
-obtain such Covered Software in Source Code form in a
-reasonable manner on or through a medium customarily used
-for software exchange.
-
-3.2. Modifications.
-
-The Modifications that You create or to which You
-contribute are governed by the terms of this License. You
-represent that You believe Your Modifications are Your
-original creation(s) and/or You have sufficient rights to
-grant the rights conveyed by this License.
-
-3.3. Required Notices.
-
-You must include a notice in each of Your Modifications
-that identifies You as the Contributor of the Modification.
-You may not remove or alter any copyright, patent or
-trademark notices contained within the Covered Software, or
-any notices of licensing or any descriptive text giving
-attribution to any Contributor or the Initial Developer.
-
-3.4. Application of Additional Terms.
-
-You may not offer or impose any terms on any Covered
-Software in Source Code form that alters or restricts the
-applicable version of this License or the recipients'
-rights hereunder. You may choose to offer, and to charge a
-fee for, warranty, support, indemnity or liability
-obligations to one or more recipients of Covered Software.
-However, you may do so only on Your own behalf, and not on
-behalf of the Initial Developer or any Contributor. You
-must make it absolutely clear that any such warranty,
-support, indemnity or liability obligation is offered by
-You alone, and You hereby agree to indemnify the Initial
-Developer and every Contributor for any liability incurred
-by the Initial Developer or such Contributor as a result of
-warranty, support, indemnity or liability terms You offer.
-
-3.5. Distribution of Executable Versions.
-
-You may distribute the Executable form of the Covered
-Software under the terms of this License or under the terms
-of a license of Your choice, which may contain terms
-different from this License, provided that You are in
-compliance with the terms of this License and that the
-license for the Executable form does not attempt to limit
-or alter the recipient's rights in the Source Code form
-from the rights set forth in this License. If You
-distribute the Covered Software in Executable form under a
-different license, You must make it absolutely clear that
-any terms which differ from this License are offered by You
-alone, not by the Initial Developer or Contributor. You
-hereby agree to indemnify the Initial Developer and every
-Contributor for any liability incurred by the Initial
-Developer or such Contributor as a result of any such terms
-You offer.
-
-3.6. Larger Works.
-
-You may create a Larger Work by combining Covered Software
-with other code not governed by the terms of this License
-and distribute the Larger Work as a single product. In such
-a case, You must make sure the requirements of this License
-are fulfilled for the Covered Software.
-
-4. Versions of the License.
-
-4.1. New Versions.
-
-Sun Microsystems, Inc. is the initial license steward and
-may publish revised and/or new versions of this License
-from time to time. Each version will be given a
-distinguishing version number. Except as provided in
-Section 4.3, no one other than the license steward has the
-right to modify this License.
-
-4.2. Effect of New Versions.
-
-You may always continue to use, distribute or otherwise
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. If the Initial Developer includes a
-notice in the Original Software prohibiting it from being
-distributed or otherwise made available under any
-subsequent version of the License, You must distribute and
-make the Covered Software available under the terms of the
-version of the License under which You originally received
-the Covered Software. Otherwise, You may also choose to
-use, distribute or otherwise make the Covered Software
-available under the terms of any subsequent version of the
-License published by the license steward.
-
-4.3. Modified Versions.
-
-When You are an Initial Developer and You want to create a
-new license for Your Original Software, You may create and
-use a modified version of this License if You: (a) rename
-the license and remove any references to the name of the
-license steward (except to note that the license differs
-from this License); and (b) otherwise make it clear that
-the license contains terms which differ from this License.
-
-5. DISCLAIMER OF WARRANTY.
-
-COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
-BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
-SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
-PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
-COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
-INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
-ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
-WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
-ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
-DISCLAIMER.
-
-6. TERMINATION.
-
-6.1. This License and the rights granted hereunder will
-terminate automatically if You fail to comply with terms
-herein and fail to cure such breach within 30 days of
-becoming aware of the breach. Provisions which, by their
-nature, must remain in effect beyond the termination of
-this License shall survive.
-
-6.2. If You assert a patent infringement claim (excluding
-declaratory judgment actions) against Initial Developer or
-a Contributor (the Initial Developer or Contributor against
-whom You assert such claim is referred to as "Participant")
-alleging that the Participant Software (meaning the
-Contributor Version where the Participant is a Contributor
-or the Original Software where the Participant is the
-Initial Developer) directly or indirectly infringes any
-patent, then any and all rights granted directly or
-indirectly to You by such Participant, the Initial
-Developer (if the Initial Developer is not the Participant)
-and all Contributors under Sections 2.1 and/or 2.2 of this
-License shall, upon 60 days notice from Participant
-terminate prospectively and automatically at the expiration
-of such 60 day notice period, unless if within such 60 day
-period You withdraw Your claim with respect to the
-Participant Software against such Participant either
-unilaterally or pursuant to a written agreement with
-Participant.
-
-6.3. In the event of termination under Sections 6.1 or 6.2
-above, all end user licenses that have been validly granted
-by You or any distributor hereunder prior to termination
-(excluding licenses granted to You by any distributor)
-shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
-INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
-COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
-LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
-CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
-LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
-STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
-COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
-INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
-LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
-INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
-APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
-NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
-CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
-APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-The Covered Software is a "commercial item," as that term is
-defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
-computer software" (as that term is defined at 48 C.F.R. $
-252.227-7014(a)(1)) and "commercial computer software
-documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
-1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
-through 227.7202-4 (June 1995), all U.S. Government End Users
-acquire Covered Software with only those rights set forth herein.
-This U.S. Government Rights clause is in lieu of, and supersedes,
-any other FAR, DFAR, or other clause or provision that addresses
-Government rights in computer software under this License.
-
-9. MISCELLANEOUS.
-
-This License represents the complete agreement concerning subject
-matter hereof. If any provision of this License is held to be
-unenforceable, such provision shall be reformed only to the
-extent necessary to make it enforceable. This License shall be
-governed by the law of the jurisdiction specified in a notice
-contained within the Original Software (except to the extent
-applicable law, if any, provides otherwise), excluding such
-jurisdiction's conflict-of-law provisions. Any litigation
-relating to this License shall be subject to the jurisdiction of
-the courts located in the jurisdiction and venue specified in a
-notice contained within the Original Software, with the losing
-party responsible for costs, including, without limitation, court
-costs and reasonable attorneys' fees and expenses. The
-application of the United Nations Convention on Contracts for the
-International Sale of Goods is expressly excluded. Any law or
-regulation which provides that the language of a contract shall
-be construed against the drafter shall not apply to this License.
-You agree that You alone are responsible for compliance with the
-United States export administration regulations (and the export
-control laws and regulation of any other countries) when You use,
-distribute or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-As between Initial Developer and the Contributors, each party is
-responsible for claims and damages arising, directly or
-indirectly, out of its utilization of rights under this License
-and You agree to work with Initial Developer and Contributors to
-distribute such responsibility on an equitable basis. Nothing
-herein is intended or shall be deemed to constitute any admission
-of liability.
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
 
 ==
 
@@ -614,23 +402,252 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For Micrometer Application Metrics (https://micrometer.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Swagger (http://swagger.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Ionicons (http://ionicons.com/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For javax.annotation-api (https://jcp.org/en/jsr/detail?id=250):
-This is licensed under the CDDL 1.0, see above.
+For slimScroll (http://rocha.la/jQuery-slimScroll):
+This is licensed under the MIT license, see above.
 
 ==
 
-For Bean Validation API (http://beanvalidation.org/):
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0:
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and documentation
+   distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+    i) changes to the Program, and
+   ii) additions to the Program;
+
+   where such changes and/or additions to the Program originate from and are
+   distributed by that particular Contributor. A Contribution 'originates'
+   from a Contributor if it was added to the Program by such Contributor
+   itself or anyone acting on such Contributor's behalf. Contributions do not
+   include additions to the Program which: (i) are separate modules of
+   software distributed in conjunction with the Program under their own
+   license agreement, and (ii) are not derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+  a) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free copyright license to
+     reproduce, prepare derivative works of, publicly display, publicly
+     perform, distribute and sublicense the Contribution of such Contributor,
+     if any, and such derivative works, in source code and object code form.
+  b) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free patent license under
+     Licensed Patents to make, use, sell, offer to sell, import and otherwise
+     transfer the Contribution of such Contributor, if any, in source code and
+     object code form. This patent license shall apply to the combination of
+     the Contribution and the Program if, at the time the Contribution is
+     added by the Contributor, such addition of the Contribution causes such
+     combination to be covered by the Licensed Patents. The patent license
+     shall not apply to any other combinations which include the Contribution.
+     No hardware per se is licensed hereunder.
+  c) Recipient understands that although each Contributor grants the licenses
+     to its Contributions set forth herein, no assurances are provided by any
+     Contributor that the Program does not infringe the patent or other
+     intellectual property rights of any other entity. Each Contributor
+     disclaims any liability to Recipient for claims brought by any other
+     entity based on infringement of intellectual property rights or
+     otherwise. As a condition to exercising the rights and licenses granted
+     hereunder, each Recipient hereby assumes sole responsibility to secure
+     any other intellectual property rights needed, if any. For example, if a
+     third party patent license is required to allow Recipient to distribute
+     the Program, it is Recipient's responsibility to acquire that license
+     before distributing the Program.
+  d) Each Contributor represents that to its knowledge it has sufficient
+     copyright rights in its Contribution, if any, to grant the copyright
+     license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+  a) it complies with the terms and conditions of this Agreement; and
+  b) its license agreement:
+      i) effectively disclaims on behalf of all Contributors all warranties
+         and conditions, express and implied, including warranties or
+         conditions of title and non-infringement, and implied warranties or
+         conditions of merchantability and fitness for a particular purpose;
+     ii) effectively excludes on behalf of all Contributors all liability for
+         damages, including direct, indirect, special, incidental and
+         consequential damages, such as lost profits;
+    iii) states that any provisions which differ from this Agreement are
+         offered by that Contributor alone and not by any other party; and
+     iv) states that source code for the Program is available from such
+         Contributor, and informs licensees how to obtain it in a reasonable
+         manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+  a) it must be made available under this Agreement; and
+  b) a copy of this Agreement must be included with each copy of the Program.
+     Contributors may not remove or alter any copyright notices contained
+     within the Program.
+
+Each Contributor must identify itself as the originator of its Contribution,
+if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore,
+if a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses,
+damages and costs (collectively "Losses") arising from claims, lawsuits and
+other legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such Commercial
+Contributor in connection with its distribution of the Program in a commercial
+product offering. The obligations in this section do not apply to any claims
+or Losses relating to any actual or alleged intellectual property
+infringement. In order to qualify, an Indemnified Contributor must:
+a) promptly notify the Commercial Contributor in writing of such claim, and
+b) allow the Commercial Contributor to control, and cooperate with the
+Commercial Contributor in, the defense and any related settlement
+negotiations. The Indemnified Contributor may participate in any such claim at
+its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If
+that Commercial Contributor then makes performance claims, or offers
+warranties related to Product X, those performance claims and warranties are
+such Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to the
+risks and costs of program errors, compliance with applicable laws, damage to
+or loss of data, programs or equipment, and unavailability or interruption of
+operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
+LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
+EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of the
+remainder of the terms of this Agreement, and without further action by the
+parties hereto, such provision shall be reformed to the minimum extent
+necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a
+cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+(excluding combinations of the Program with other software or hardware)
+infringes such Recipient's patent(s), then such Recipient's rights granted
+under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to
+time. No one other than the Agreement Steward has the right to modify this
+Agreement. The Eclipse Foundation is the initial Agreement Steward. The
+Eclipse Foundation may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement will
+be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version of the
+Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly
+stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
+licenses to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in the
+Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial in
+any resulting litigation.
+
+==
+
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For JSR-330: Dependency Injection for Java (https://code.google.com/archive/p/atinject/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For javax.ws.rs-api (https://jax-rs-spec.java.net/):
-This is licensed under the CDDL 1.0, see above.
+For Bean Validation API (http://beanvalidation.org/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
@@ -654,43 +671,33 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Kendo UI (http://www.telerik.com/kendo-ui):
-This is licensed under the AL 2.0, see above.
+For jQuery++ (http://jquerypp.com/):
+This is licensed under the MIT license, see above.
 
 ==
 
-For lodash (https://lodash.com/):
+For jsPlumb (http://jsplumbtoolkit.com/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
-This is licensed under the BSD license:
+For Modernizr (https://modernizr.com):
+This is licensed under the MIT license, see above.
 
-Redistribution and use in source and binary forms, with or without 
-modification, are permitted provided that the following conditions are met:
+==
 
-1. Redistributions of source code must retain the above copyright notice, this 
-list of conditions and the following disclaimer.
+For The Checker Framework (https://checkerframework.org/):
+This is licensed under the MIT license, see above.
 
-2. Redistributions in binary form must reproduce the above copyright notice, 
-this list of conditions and the following disclaimer in the documentation 
-and/or other materials provided with the distribution.
+==
 
-3. Neither the name of the copyright holder nor the names of its contributors 
-may be used to endorse or promote products derived from this software without 
-specific prior written permission.
+For MojoHaus AnimalSniffer Maven Plugin (https://github.com/mojohaus/animal-sniffer):
+This is licensed under the MIT license, see above.
 
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==
+
+For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
+This is licensed under the BSD license, see above.
 
 ==
 
@@ -699,30 +706,215 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Serializable java.util.function Interfaces (https://github.com/danekja/jdk-serializable-functional):
+This is licensed under the MIT license, see above.
+
+==
+
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
+==
+
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For ASM (http://asm.ow2.org/):
+This is licensed under the BSD license, see above.
+
+==
+
 For Simple Logging Facade for Java - SLF4J (http://www.slf4j.org/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For Spring Framework (http://projects.spring.io/spring-framework/):
+For Spring (https://spring.io/projects):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For FileSaver.js (http://carlos-algms.github.io/work/html5-saveas-filesaver.js/):
+For Moment.js (http://momentjs.com/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For Bootstrap File Input (http://plugins.krajee.com/file-input):
-This is licensed under the BSD license, see above.
+For Inputmask (https://github.com/RobinHerbots/Inputmask):
+This is licensed under the MIT license, see above.
 
 ==
 
-For ng-password-strength (https://github.com/subarroca/ng-password-strength):
+For Summernote (https://summernote.org/):
 This is licensed under the MIT license, see above.
 
 ==
 
-For Select2 (https://select2.github.io/):
+For WicketStuff (https://wicketstuff.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For SnakeYAML (http://www.snakeyaml.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For popper.js (https://github.com/FezVrasta/popper.js):
+This is licensed under the MIT license, see above.
+
+==
+
+For spin.js (http://spin.js.org/):
 This is licensed under the MIT license, see above.
+
+==
+
+For Tempus Dominus Bootstrap 4 Datetime Picker (https://github.com/tempusdominus/bootstrap-4):
+This is licensed under the MIT license, see above.
+
+==
+
+For typeahead.js (http://twitter.github.io/typeahead.js/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Wicket-Bootstrap (http://wb.agilecoders.de/):
+This is licensed under the AL 2.0, see above.
diff --git a/docker/enduser/NOTICE b/docker/enduser/NOTICE
index accf9c5c0f..1ddf3dc6e6 100644
--- a/docker/enduser/NOTICE
+++ b/docker/enduser/NOTICE
@@ -9,22 +9,125 @@ with which this file is now or was at one time distributed.
 
 ==
 
+This product includes software developed by the Animate.css project.
+Copyright (c) 2016 Daniel Eden
+
+==
+
+This product includes software developed by the args4j project.
+Copyright (c) 2013 Kohsuke Kawaguchi and other contributors
+
+==
+
+This product includes software developed by the Bootbox.js project.
+Copyright (C) 2011-2015 by Nick Payne nick@kurai.co.uk
+
+==
+
 This product includes software developed by the Bootstrap project.
 Copyright (c) 2011-2016 Twitter, Inc.
 
 ==
 
-This product includes software developed by the bootstrap-select project.
-Copyright (c) 2013-2015 bootstrap-select]
+This product includes software developed by the Jackson project.
 
 ==
 
-This product includes software developed by the Jackson project.
+This product includes software developed by the Open JSON project.
+
+==
+
+This product includes software developed by the Gson project.
+Copyright (c) 2008 Google Inc.
+
+==
+
+This product includes software developed by Elemental2
+Copyright 2018 Google Inc.
+
+==
+
+This product includes software developed by Error Prone.
+
+==
+
+This product includes software developed by the Google Guava project.
+Copyright (c) 2016 The Guava Authors.
+
+==
+
+This product includes software developed by J2ObjC: Java to Objective-C Translator and Runtime.
+
+==
+
+This product includes software developed by The Closure Compiler.
+Copyright (c) 2009 The Closure Compiler Authors.
+
+==
+
+This product includes software developed by JsInterop Base
+Copyright 2017 Google Inc.
+
+==
+
+This product includes software developed by JsInterop Annotations.
+Copyright (c) 2019 Google Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Protocol Buffers
+Copyright 2008 Google Inc. All rights reserved.
+
+==
+
+This product includes software developed by RE2/J
+Copyright (c) 2009 The Go Authors. All rights reserved.
+
+==
+
+This product includes software developed by OWASP Java HTML Sanitizer.
+Copyright (c) 2011, Mike Samuel
+All rights reserved.
+
+==
+
+This product includes software developed by the Wicket - jQuery UI project.
+Copyright 2012-2013 Sebastien Briquet
 
 ==
 
-This product includes software developed by the JAXB project.
-Copyright (c) 2013-2016 The JAXB project.
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
+
+==
+
+This product includes software developed by the Swagger project.
+Copyright 2016 SmartBear Software
 
 ==
 
@@ -33,18 +136,24 @@ Copyright (c) 2016 Drifty (http://drifty.com/)
 
 ==
 
-This product includs software developed by Oracle.
-Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
+This product includes software developed by the slimScroll project.
+Copyright (c) 2011 Piotr Rochala (http://rocha.la)
 
 ==
 
-This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
-Copyright (c) Red Hat, Inc., Emmanuel Bernard
+This product includes software developed by Apereo CAS
+Copyright 2022, The Apereo Foundation
 
 ==
 
-This product includes software developed by the JAX-RS project.
-Copyright (c) 2014, Oracle Corporation and/or its affiliates. All rights reserved.
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
+
+==
+
+This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
+Copyright (c) Red Hat, Inc., Emmanuel Bernard
 
 ==
 
@@ -68,13 +177,23 @@ Copyright 2007, 2015 jQuery Foundation and other contributors.
 
 ==
 
-This product includes software developed by the Kendo UI project.
-Copyright (c) 2014-2015 Telerik]
+This product includes software developed by the jQuery++ project.
+Copyright (C) 2012 Bitovi
+
+==
+
+This product includes software developed by the jsPlumb project.
+Copyright (c) 2010 - 2014 jsPlumb, http://jsplumbtoolkit.com/
+
+==
+
+This product includes software developed by The Checker Framework.
+Copyright (c) 2004-present by the Checker Framework developers
 
 ==
 
-This product includes software developed by the lodash project.
-Copyright jQuery Foundation and other contributors <https://jquery.org/>]
+This product includes software developed by MojoHaus AnimalSniffer Maven Plugin
+Copyright (c) 2009, codehaus.org
 
 ==
 
@@ -86,33 +205,56 @@ This product includes software developed by the Woodstox Project.
 
 ==
 
+This product includes software developed by Serializable java.util.function Interfaces.
+Copyright (c) 2015 Jakub Danek
+
+==
+
+This product includes software developed by the ASM project.
+Copyright (c) 2000-2011 INRIA, France Telecom
+All rights reserved.
+
+==
+
 This products includes software developed by the Simple Logging Facade for Java (SLF4J) project.
 Copyright (c) 2004-2016 QOS.ch.
 
 ==
 
 This product includes software developed by SpringSource.
-Copyright (c) 2004-2016 SpringSource
+Copyright (c) 2004-2022 SpringSource
 All rights reserved.
 
 ==
 
-This product includes software developed by the FileSaver.js project.
-Copyright (c) 2015 Carlos A. Gomes.
+This product includes software developed by Moment.js.
+Copyright (c) JS Foundation and other contributors
+
+==
+
+This product includes software developed by Inputmask
+Copyright (c) 2010 - 2018 Robin Herbots
+
+==
+
+This product includes software developed by Summernote
+Copyright (c) 2015~ Summernote Team (https://github.com/orgs/summernote/people)
+
+==
+
+This product includes software developed by WicketStuff
+Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
 
 ==
 
-This product includes software developed by the Bootstrap File Input project.
-Copyright (c) 2014 - 2016, Kartik Visweswaran Krajee.com All rights reserved.
+This product includes software developed by the SnakeYAML project.
 
 ==
 
-This product contains unmodified binary redistributions for H2 database engine,
-which is dual licensed and available under a modified version of the MPL 1.1 (Mozilla Public License) or under the
-(unmodified) EPL 1.0 (Eclipse Public License).
-An original copy of the license agreement can be found at: http://www.h2database.com/html/license.html
+This product includes software developed by popper.js
+Copyright (c) 2021 Floating UI contributors
 
 ==
 
-This product includes software developed by the Select2 project.
-Copyright (c) 2012-2015 Kevin Brown, Igor Vaynberg, and Select2 contributors
+This product includes software developed by Tempus Dominus Bootstrap 4 Datetime Picker
+Copyright (c) 2016 Tempus Dominus
diff --git a/docker/sra/pom.xml b/docker/sra/pom.xml
index e8c1bd6f6d..3876a4b495 100644
--- a/docker/sra/pom.xml
+++ b/docker/sra/pom.xml
@@ -115,6 +115,14 @@ under the License.
         <directory>src/main/resources</directory>
         <filtering>true</filtering>
       </resource>
+      <resource>
+        <directory>${basedir}/../../sra</directory>
+        <includes>
+          <include>LICENSE</include>
+          <include>NOTICE</include>
+        </includes>
+        <targetPath>META-INF</targetPath>
+      </resource>
     </resources>
   </build>
 
diff --git a/docker/wa/LICENSE b/docker/wa/LICENSE
index d645695673..9da280096a 100644
--- a/docker/wa/LICENSE
+++ b/docker/wa/LICENSE
@@ -200,3 +200,1437 @@
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
+
+==
+
+For AOP Alliance (http://aopalliance.sourceforge.net/):
+This is Public Domain.
+
+==
+
+For Bootstrap (http://getbootstrap.com/):
+This is licensed under the MIT license:
+
+ Permission is hereby granted, free  of charge, to any person obtaining
+ a  copy  of this  software  and  associated  documentation files  (the
+ "Software"), to  deal in  the Software without  restriction, including
+ without limitation  the rights to  use, copy, modify,  merge, publish,
+ distribute,  sublicense, and/or sell  copies of  the Software,  and to
+ permit persons to whom the Software  is furnished to do so, subject to
+ the following conditions:
+ 
+ The  above  copyright  notice  and  this permission  notice  shall  be
+ included in all copies or substantial portions of the Software.
+ 
+ THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
+ EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
+ MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+==
+
+For bootstrap-select (http://silviomoreto.github.io/bootstrap-select/):
+This is licensed under the MIT license, see above.
+
+==
+
+For cglib (https://github.com/cglib/cglib):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For COSE-JAVA (https://github.com/cose-wg/cose-java):
+This is licensed under the BSD license:
+
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==
+
+For Auth0 Java JWT (https://github.com/auth0/java-jwt):
+This is licensed under the MIT license, see above.
+
+==
+
+For JCommander (https://jcommander.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Duo Auth API (https://github.com/duosecurity/duo_client_java):
+This is licensed under the BSD license, see above.
+
+==
+
+For Jackson (http://wiki.fasterxml.com/JacksonHome):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Caffeine (https://github.com/ben-manes/caffeine):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Operating System and Hardware Information (https://oshi.github.io/oshi/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Numbers (https://github.com/peteroupc/Numbers-Java):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
+==
+
+For ScribeJava (https://github.com/scribejava/scribejava):
+This is licensed under the MIT license, see above.
+
+==
+
+For JCIP Annotations (https://github.com/stephenc/jcip-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Gson (https://github.com/google/gson):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Error Prone (https://errorprone.info/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Guava (https://github.com/google/guava):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For J2ObjC: Java to Objective-C Translator and Runtime (http://j2objc.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For ZXing (https://github.com/zxing/zxing):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For LMAX Disruptor (https://lmax-exchange.github.io/disruptor/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For mchange-commons-java (https://github.com/swaldman/mchange-commons-java):
+This is licensed under the EPL 1.0:
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and documentation
+   distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+    i) changes to the Program, and
+   ii) additions to the Program;
+
+   where such changes and/or additions to the Program originate from and are
+   distributed by that particular Contributor. A Contribution 'originates'
+   from a Contributor if it was added to the Program by such Contributor
+   itself or anyone acting on such Contributor's behalf. Contributions do not
+   include additions to the Program which: (i) are separate modules of
+   software distributed in conjunction with the Program under their own
+   license agreement, and (ii) are not derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+  a) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free copyright license to
+     reproduce, prepare derivative works of, publicly display, publicly
+     perform, distribute and sublicense the Contribution of such Contributor,
+     if any, and such derivative works, in source code and object code form.
+  b) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free patent license under
+     Licensed Patents to make, use, sell, offer to sell, import and otherwise
+     transfer the Contribution of such Contributor, if any, in source code and
+     object code form. This patent license shall apply to the combination of
+     the Contribution and the Program if, at the time the Contribution is
+     added by the Contributor, such addition of the Contribution causes such
+     combination to be covered by the Licensed Patents. The patent license
+     shall not apply to any other combinations which include the Contribution.
+     No hardware per se is licensed hereunder.
+  c) Recipient understands that although each Contributor grants the licenses
+     to its Contributions set forth herein, no assurances are provided by any
+     Contributor that the Program does not infringe the patent or other
+     intellectual property rights of any other entity. Each Contributor
+     disclaims any liability to Recipient for claims brought by any other
+     entity based on infringement of intellectual property rights or
+     otherwise. As a condition to exercising the rights and licenses granted
+     hereunder, each Recipient hereby assumes sole responsibility to secure
+     any other intellectual property rights needed, if any. For example, if a
+     third party patent license is required to allow Recipient to distribute
+     the Program, it is Recipient's responsibility to acquire that license
+     before distributing the Program.
+  d) Each Contributor represents that to its knowledge it has sufficient
+     copyright rights in its Contribution, if any, to grant the copyright
+     license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+  a) it complies with the terms and conditions of this Agreement; and
+  b) its license agreement:
+      i) effectively disclaims on behalf of all Contributors all warranties
+         and conditions, express and implied, including warranties or
+         conditions of title and non-infringement, and implied warranties or
+         conditions of merchantability and fitness for a particular purpose;
+     ii) effectively excludes on behalf of all Contributors all liability for
+         damages, including direct, indirect, special, incidental and
+         consequential damages, such as lost profits;
+    iii) states that any provisions which differ from this Agreement are
+         offered by that Contributor alone and not by any other party; and
+     iv) states that source code for the Program is available from such
+         Contributor, and informs licensees how to obtain it in a reasonable
+         manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+  a) it must be made available under this Agreement; and
+  b) a copy of this Agreement must be included with each copy of the Program.
+     Contributors may not remove or alter any copyright notices contained
+     within the Program.
+
+Each Contributor must identify itself as the originator of its Contribution,
+if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore,
+if a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses,
+damages and costs (collectively "Losses") arising from claims, lawsuits and
+other legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such Commercial
+Contributor in connection with its distribution of the Program in a commercial
+product offering. The obligations in this section do not apply to any claims
+or Losses relating to any actual or alleged intellectual property
+infringement. In order to qualify, an Indemnified Contributor must:
+a) promptly notify the Commercial Contributor in writing of such claim, and
+b) allow the Commercial Contributor to control, and cooperate with the
+Commercial Contributor in, the defense and any related settlement
+negotiations. The Indemnified Contributor may participate in any such claim at
+its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If
+that Commercial Contributor then makes performance claims, or offers
+warranties related to Product X, those performance claims and warranties are
+such Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to the
+risks and costs of program errors, compliance with applicable laws, damage to
+or loss of data, programs or equipment, and unavailability or interruption of
+operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
+LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
+EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of the
+remainder of the terms of this Agreement, and without further action by the
+parties hereto, such provision shall be reformed to the minimum extent
+necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a
+cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+(excluding combinations of the Program with other software or hardware)
+infringes such Recipient's patent(s), then such Recipient's rights granted
+under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to
+time. No one other than the Agreement Steward has the right to modify this
+Agreement. The Eclipse Foundation is the initial Agreement Steward. The
+Eclipse Foundation may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement will
+be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version of the
+Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly
+stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
+licenses to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in the
+Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial in
+any resulting litigation.
+
+==
+
+For Microsoft OAuth 2.0 User Agent library for Java (https://github.com/Microsoft/oauth2-useragent):
+This is licensed under the MIT license, see above.
+
+==
+
+For Nimbus Content Type (https://bitbucket.org/connect2id/nimbus-content-type/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus Language Tags (https://bitbucket.org/connect2id/nimbus-language-tags/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus JOSE-JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OAuth 2.0 SDK with OpenID Connect extensions (https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Moshi (https://square.github.io/moshi/1.x):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OkHttp (https://square.github.io/okhttp/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Okio (https://square.github.io/okio/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Retrofit (https://square.github.io/retrofit/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Retrofit (https://square.github.io/retrofit/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Mail:
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For JAX-B (http://jaxb.java.net/):
+This is licensed under the CDDL 1.0:
+
+COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
+
+1. Definitions.
+
+1.1. "Contributor" means each individual or entity that
+creates or contributes to the creation of Modifications.
+
+1.2. "Contributor Version" means the combination of the
+Original Software, prior Modifications used by a
+Contributor (if any), and the Modifications made by that
+particular Contributor.
+
+1.3. "Covered Software" means (a) the Original Software, or
+(b) Modifications, or (c) the combination of files
+containing Original Software with files containing
+Modifications, in each case including portions thereof.
+
+1.4. "Executable" means the Covered Software in any form
+other than Source Code.
+
+1.5. "Initial Developer" means the individual or entity
+that first makes Original Software available under this
+License.
+
+1.6. "Larger Work" means a work which combines Covered
+Software or portions thereof with code not governed by the
+terms of this License.
+
+1.7. "License" means this document.
+
+1.8. "Licensable" means having the right to grant, to the
+maximum extent possible, whether at the time of the initial
+grant or subsequently acquired, any and all of the rights
+conveyed herein.
+
+1.9. "Modifications" means the Source Code and Executable
+form of any of the following:
+
+A. Any file that results from an addition to,
+deletion from or modification of the contents of a
+file containing Original Software or previous
+Modifications;
+
+B. Any new file that contains any part of the
+Original Software or previous Modification; or
+
+C. Any new file that is contributed or otherwise made
+available under the terms of this License.
+
+1.10. "Original Software" means the Source Code and
+Executable form of computer software code that is
+originally released under this License.
+
+1.11. "Patent Claims" means any patent claim(s), now owned
+or hereafter acquired, including without limitation,
+method, process, and apparatus claims, in any patent
+Licensable by grantor.
+
+1.12. "Source Code" means (a) the common form of computer
+software code in which modifications are made and (b)
+associated documentation included in or with such code.
+
+1.13. "You" (or "Your") means an individual or a legal
+entity exercising rights under, and complying with all of
+the terms of, this License. For legal entities, "You"
+includes any entity which controls, is controlled by, or is
+under common control with You. For purposes of this
+definition, "control" means (a) the power, direct or
+indirect, to cause the direction or management of such
+entity, whether by contract or otherwise, or (b) ownership
+of more than fifty percent (50%) of the outstanding shares
+or beneficial ownership of such entity.
+
+2. License Grants.
+
+2.1. The Initial Developer Grant.
+
+Conditioned upon Your compliance with Section 3.1 below and
+subject to third party intellectual property claims, the
+Initial Developer hereby grants You a world-wide,
+royalty-free, non-exclusive license:
+
+(a) under intellectual property rights (other than
+patent or trademark) Licensable by Initial Developer,
+to use, reproduce, modify, display, perform,
+sublicense and distribute the Original Software (or
+portions thereof), with or without Modifications,
+and/or as part of a Larger Work; and
+
+(b) under Patent Claims infringed by the making,
+using or selling of Original Software, to make, have
+made, use, practice, sell, and offer for sale, and/or
+otherwise dispose of the Original Software (or
+portions thereof).
+
+(c) The licenses granted in Sections 2.1(a) and (b)
+are effective on the date Initial Developer first
+distributes or otherwise makes the Original Software
+available to a third party under the terms of this
+License.
+
+(d) Notwithstanding Section 2.1(b) above, no patent
+license is granted: (1) for code that You delete from
+the Original Software, or (2) for infringements
+caused by: (i) the modification of the Original
+Software, or (ii) the combination of the Original
+Software with other software or devices.
+
+2.2. Contributor Grant.
+
+Conditioned upon Your compliance with Section 3.1 below and
+subject to third party intellectual property claims, each
+Contributor hereby grants You a world-wide, royalty-free,
+non-exclusive license:
+
+(a) under intellectual property rights (other than
+patent or trademark) Licensable by Contributor to
+use, reproduce, modify, display, perform, sublicense
+and distribute the Modifications created by such
+Contributor (or portions thereof), either on an
+unmodified basis, with other Modifications, as
+Covered Software and/or as part of a Larger Work; and
+
+(b) under Patent Claims infringed by the making,
+using, or selling of Modifications made by that
+Contributor either alone and/or in combination with
+its Contributor Version (or portions of such
+combination), to make, use, sell, offer for sale,
+have made, and/or otherwise dispose of: (1)
+Modifications made by that Contributor (or portions
+thereof); and (2) the combination of Modifications
+made by that Contributor with its Contributor Version
+(or portions of such combination).
+
+(c) The licenses granted in Sections 2.2(a) and
+2.2(b) are effective on the date Contributor first
+distributes or otherwise makes the Modifications
+available to a third party.
+
+(d) Notwithstanding Section 2.2(b) above, no patent
+license is granted: (1) for any code that Contributor
+has deleted from the Contributor Version; (2) for
+infringements caused by: (i) third party
+modifications of Contributor Version, or (ii) the
+combination of Modifications made by that Contributor
+with other software (except as part of the
+Contributor Version) or other devices; or (3) under
+Patent Claims infringed by Covered Software in the
+absence of Modifications made by that Contributor.
+
+3. Distribution Obligations.
+
+3.1. Availability of Source Code.
+
+Any Covered Software that You distribute or otherwise make
+available in Executable form must also be made available in
+Source Code form and that Source Code form must be
+distributed only under the terms of this License. You must
+include a copy of this License with every copy of the
+Source Code form of the Covered Software You distribute or
+otherwise make available. You must inform recipients of any
+such Covered Software in Executable form as to how they can
+obtain such Covered Software in Source Code form in a
+reasonable manner on or through a medium customarily used
+for software exchange.
+
+3.2. Modifications.
+
+The Modifications that You create or to which You
+contribute are governed by the terms of this License. You
+represent that You believe Your Modifications are Your
+original creation(s) and/or You have sufficient rights to
+grant the rights conveyed by this License.
+
+3.3. Required Notices.
+
+You must include a notice in each of Your Modifications
+that identifies You as the Contributor of the Modification.
+You may not remove or alter any copyright, patent or
+trademark notices contained within the Covered Software, or
+any notices of licensing or any descriptive text giving
+attribution to any Contributor or the Initial Developer.
+
+3.4. Application of Additional Terms.
+
+You may not offer or impose any terms on any Covered
+Software in Source Code form that alters or restricts the
+applicable version of this License or the recipients'
+rights hereunder. You may choose to offer, and to charge a
+fee for, warranty, support, indemnity or liability
+obligations to one or more recipients of Covered Software.
+However, you may do so only on Your own behalf, and not on
+behalf of the Initial Developer or any Contributor. You
+must make it absolutely clear that any such warranty,
+support, indemnity or liability obligation is offered by
+You alone, and You hereby agree to indemnify the Initial
+Developer and every Contributor for any liability incurred
+by the Initial Developer or such Contributor as a result of
+warranty, support, indemnity or liability terms You offer.
+
+3.5. Distribution of Executable Versions.
+
+You may distribute the Executable form of the Covered
+Software under the terms of this License or under the terms
+of a license of Your choice, which may contain terms
+different from this License, provided that You are in
+compliance with the terms of this License and that the
+license for the Executable form does not attempt to limit
+or alter the recipient's rights in the Source Code form
+from the rights set forth in this License. If You
+distribute the Covered Software in Executable form under a
+different license, You must make it absolutely clear that
+any terms which differ from this License are offered by You
+alone, not by the Initial Developer or Contributor. You
+hereby agree to indemnify the Initial Developer and every
+Contributor for any liability incurred by the Initial
+Developer or such Contributor as a result of any such terms
+You offer.
+
+3.6. Larger Works.
+
+You may create a Larger Work by combining Covered Software
+with other code not governed by the terms of this License
+and distribute the Larger Work as a single product. In such
+a case, You must make sure the requirements of this License
+are fulfilled for the Covered Software.
+
+4. Versions of the License.
+
+4.1. New Versions.
+
+Sun Microsystems, Inc. is the initial license steward and
+may publish revised and/or new versions of this License
+from time to time. Each version will be given a
+distinguishing version number. Except as provided in
+Section 4.3, no one other than the license steward has the
+right to modify this License.
+
+4.2. Effect of New Versions.
+
+You may always continue to use, distribute or otherwise
+make the Covered Software available under the terms of the
+version of the License under which You originally received
+the Covered Software. If the Initial Developer includes a
+notice in the Original Software prohibiting it from being
+distributed or otherwise made available under any
+subsequent version of the License, You must distribute and
+make the Covered Software available under the terms of the
+version of the License under which You originally received
+the Covered Software. Otherwise, You may also choose to
+use, distribute or otherwise make the Covered Software
+available under the terms of any subsequent version of the
+License published by the license steward.
+
+4.3. Modified Versions.
+
+When You are an Initial Developer and You want to create a
+new license for Your Original Software, You may create and
+use a modified version of this License if You: (a) rename
+the license and remove any references to the name of the
+license steward (except to note that the license differs
+from this License); and (b) otherwise make it clear that
+the license contains terms which differ from this License.
+
+5. DISCLAIMER OF WARRANTY.
+
+COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
+BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
+INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
+SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
+PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
+PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
+COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
+INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
+ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
+WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
+ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
+DISCLAIMER.
+
+6. TERMINATION.
+
+6.1. This License and the rights granted hereunder will
+terminate automatically if You fail to comply with terms
+herein and fail to cure such breach within 30 days of
+becoming aware of the breach. Provisions which, by their
+nature, must remain in effect beyond the termination of
+this License shall survive.
+
+6.2. If You assert a patent infringement claim (excluding
+declaratory judgment actions) against Initial Developer or
+a Contributor (the Initial Developer or Contributor against
+whom You assert such claim is referred to as "Participant")
+alleging that the Participant Software (meaning the
+Contributor Version where the Participant is a Contributor
+or the Original Software where the Participant is the
+Initial Developer) directly or indirectly infringes any
+patent, then any and all rights granted directly or
+indirectly to You by such Participant, the Initial
+Developer (if the Initial Developer is not the Participant)
+and all Contributors under Sections 2.1 and/or 2.2 of this
+License shall, upon 60 days notice from Participant
+terminate prospectively and automatically at the expiration
+of such 60 day notice period, unless if within such 60 day
+period You withdraw Your claim with respect to the
+Participant Software against such Participant either
+unilaterally or pursuant to a written agreement with
+Participant.
+
+6.3. In the event of termination under Sections 6.1 or 6.2
+above, all end user licenses that have been validly granted
+by You or any distributor hereunder prior to termination
+(excluding licenses granted to You by any distributor)
+shall survive termination.
+
+7. LIMITATION OF LIABILITY.
+
+UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
+(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
+INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
+COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
+LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
+CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
+LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
+STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
+COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
+INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
+LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
+INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
+APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
+NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
+CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
+APPLY TO YOU.
+
+8. U.S. GOVERNMENT END USERS.
+
+The Covered Software is a "commercial item," as that term is
+defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
+computer software" (as that term is defined at 48 C.F.R. $
+252.227-7014(a)(1)) and "commercial computer software
+documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
+1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
+through 227.7202-4 (June 1995), all U.S. Government End Users
+acquire Covered Software with only those rights set forth herein.
+This U.S. Government Rights clause is in lieu of, and supersedes,
+any other FAR, DFAR, or other clause or provision that addresses
+Government rights in computer software under this License.
+
+9. MISCELLANEOUS.
+
+This License represents the complete agreement concerning subject
+matter hereof. If any provision of this License is held to be
+unenforceable, such provision shall be reformed only to the
+extent necessary to make it enforceable. This License shall be
+governed by the law of the jurisdiction specified in a notice
+contained within the Original Software (except to the extent
+applicable law, if any, provides otherwise), excluding such
+jurisdiction's conflict-of-law provisions. Any litigation
+relating to this License shall be subject to the jurisdiction of
+the courts located in the jurisdiction and venue specified in a
+notice contained within the Original Software, with the losing
+party responsible for costs, including, without limitation, court
+costs and reasonable attorneys' fees and expenses. The
+application of the United Nations Convention on Contracts for the
+International Sale of Goods is expressly excluded. Any law or
+regulation which provides that the language of a contract shall
+be construed against the drafter shall not apply to this License.
+You agree that You alone are responsible for compliance with the
+United States export administration regulations (and the export
+control laws and regulation of any other countries) when You use,
+distribute or otherwise make available any Covered Software.
+
+10. RESPONSIBILITY FOR CLAIMS.
+
+As between Initial Developer and the Contributors, each party is
+responsible for claims and damages arising, directly or
+indirectly, out of its utilization of rights under this License
+and You agree to work with Initial Developer and Contributors to
+distribute such responsibility on an equitable basis. Nothing
+herein is intended or shall be deemed to constitute any admission
+of liability.
+
+==
+
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+==
+
+For QDox (https://github.com/paul-hammant/qdox):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For CBOR (https://github.com/peteroupc/CBOR-Java):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Semver4j (https://github.com/vdurmont/semver4j):
+This is licensed under the MIT license, see above.
+
+==
+
+For GoogleAuth (https://github.com/wstrange/GoogleAuth):
+This is licensed under the BSD license, see above.
+
+==
+
+For Yubico (https://developers.yubico.com/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Dough Lea's util.concurrent package:
+This is Public Domain.
+
+==
+
+For DataTables (https://datatables.net/):
+This is licensed under the MIT license, see above.
+
+==
+
+For cronn reflection-util (https://github.com/cronn/reflection-util):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For es5-shim (https://github.com/es-shims/es5-shim):
+This is licensed under the MIT license, see above.
+
+==
+
+For Font Awesome (http://fontawesome.io/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Metrics (http://dropwizard.github.io/metrics/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For ClassGraph (https://github.com/classgraph/classgraph):
+This is licensed under the MIT license, see above.
+
+==
+
+For Micrometer Application Metrics (https://micrometer.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Project Reactor (https://projectreactor.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Swagger (http://swagger.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Userinfo.io (http://userinfo.io/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Expression Language 3.0 API (https://javaee.github.io/uel-ri/):
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Java(TM) Persistence API (https://github.com/javaee/jpa-spec):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Java Servlet API (https://javaee.github.io/servlet-spec/):
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Bean Validation API (http://beanvalidation.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For SAAJ Standard Implementation (https://saaj.java.net/):
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For javax.ws.rs-api (https://jax-ws.java.net/):
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Jline v2 (http://jline.github.io/jline2/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Joda Time (http://www.joda.org/joda-time/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jQuery (http://jquery.com/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Byte Buddy (https://bytebuddy.net/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For EdDSA-Java (https://github.com/str4d/ed25519-java):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For json-smart-v2 (https://github.com/netplex/json-smart-v2):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Shibboleth (https://shibboleth.net/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Spymemcached (https://github.com/couchbase/spymemcached):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Groovy Extensions (https://github.com/ultraq/groovy-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Thymeleaf Expression Processor (https://github.com/ultraq/thymeleaf-expression-processor):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Thymeleaf Layout Dialect (https://github.com/ultraq/thymeleaf-layout-dialect):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OGNL (https://github.com/jkuhnert/ognl/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OSCache (http://www.opensymphony.com/oscache/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Apereo CAS (https://apereo.github.io/cas/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Inspektr (https://github.com/apereo/inspektr):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Person Directory (https://github.com/apereo/person-directory):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For cas-server-webauthn-helper (https://github.com/mmoayyed/cas-server-webauthn-helper):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For AspectJ (http://www.eclipse.org/aspectj/):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For attoparser (http://www.attoparser.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jose.4.j (https://bitbucket.org/b_c/jose4j/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Legion of the Bouncy Castle (http://www.bouncycastle.org/java.html):
+This is licensed under the MIT license, see above.
+
+==
+
+For The Checker Framework (https://checkerframework.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
+This is licensed under the BSD license, see above.
+
+==
+
+For Woodstox (http://wiki.fasterxml.com/WoodstoxHome):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Cryptacular (https://github.com/vt-middleware/cryptacular):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Java EE API modules repackaged as OSGi bundles in GlassFish:
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Jakarta JSON Processing (https://projects.eclipse.org/projects/ee4j.jsonp):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Hjson Library (https://github.com/hjson/hjson-java):
+This is licensed under the MIT license, see above.
+
+==
+
+For Java Apereo CAS Client (https://www.apereo.org/cas):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jasypt (http://www.jasypt.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Javassist (https://jboss-javassist.github.io/javassist/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JDOM (http://www.jdom.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Kotlin (https://kotlinlang.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JetBrains Java Annotations (https://github.com/JetBrains/java-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jOOL (https://github.com/jOOQ/jOOL):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JSON in Java (https://github.com/stleary/JSON-java):
+This is licensed under the MIT license, see above.
+
+==
+
+For jsoup (https://jsoup.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Ldaptive Java Library (https://www.ldaptive.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Objenesis (http://objenesis.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Open SAML-Java (https://shibboleth.net/products/opensaml-java.html):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For ASM (http://asm.ow2.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Reactive Streams (https://www.pac4j.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Project Lombok (https://projectlombok.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Quartz Scheduler (http://quartz-scheduler.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Reactive Streams (http://www.reactive-streams.org/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Reflections (https://github.com/ronmamo/reflections):
+This is licensed under the BSD license, see above.
+
+==
+
+For Simple Logging Facade for Java - SLF4J (http://www.slf4j.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Spring openapi documentation (https://springdoc.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Spring (https://spring.io/projects):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For spring-modules-cache:
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Thymeleaf (https://www.thymeleaf.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For unbescape (https://www.unbescape.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For zxcvbn (https://github.com/dropbox/zxcvbn):
+This is licensed under the MIT license, see above.
+
+==
+
+For balanced-match (https://github.com/juliangruber/balanced-match):
+This is licensed under the MIT license, see above.
+
+==
+
+For base64-js (https://github.com/beatgammit/base64-js):
+This is licensed under the MIT license, see above.
+
+==
+
+For css-vars-ponyfill (https://github.com/jhildenbiddle/css-vars-ponyfill):
+This is licensed under the MIT license, see above.
+
+==
+
+For get-css-data (https://github.com/jhildenbiddle/get-css-data):
+This is licensed under the MIT license, see above.
+
+==
+
+For Material Components for the web (https://github.com/material-components/material-components-web):
+This is licensed under the MIT license, see above.
+
+==
+
+For Webfont - Material Design Icons (https://github.com/Templarian/MaterialDesign-Webfont):
+This is licensed under the MIT license, see above.
+
+==
+
+For normalize.css (http://necolas.github.io/normalize.css/):
+This is licensed under the MIT license, see above.
+
+==
+
+For text-encoding (https://github.com/inexorabletash/text-encoding):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For tslib (https://github.com/Microsoft/tslib):
+This is licensed under the BSD license, see above.
+
+==
+
+For window.fetch polyfill (https://github.github.io/fetch/):
+This is licensed under the MIT license, see above.
+
+==
+
+For SnakeYAML (http://www.snakeyaml.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Webjars-locator core functionality (https://github.com/webjars/webjars-locator-core):
+This is licensed under the MIT license, see above.
diff --git a/docker/wa/NOTICE b/docker/wa/NOTICE
index 20545c539f..93231698a3 100644
--- a/docker/wa/NOTICE
+++ b/docker/wa/NOTICE
@@ -3,3 +3,518 @@ Copyright 2012-2022 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).
+
+The following copyright notice(s) were affixed to portions of this code
+with which this file is now or was at one time distributed.
+
+==
+
+This product includes software developed by the AOP Alliance (Java/J2EE AOP standards).
+
+==
+
+This product includes software developed by the Bootstrap project.
+Copyright (c) 2011-2016 Twitter, Inc.
+
+==
+
+This product includes software developed by the bootstrap-select project.
+Copyright (c) 2013-2015 bootstrap-select]
+
+==
+
+This product includes software developed by COSE-JAVA
+Copyright (c) 2016, All rights reserved.
+
+==
+
+This product includes software developed by Auth0 Java JWT
+Copyright (c) 2015 Auth0, Inc. <su...@auth0.com> (http://auth0.com)
+
+==
+
+This product includes software developed by Duo Auth API
+Copyright (c) 2012, Duo Security, Inc.
+
+==
+
+This product includes software developed by the Jackson project.
+
+==
+
+This product includes software developed by the Caffeine project.
+Copyright (c) 2021 Ben Manes. All Rights Reserved.
+
+==
+
+This product includes software developed by Operating System and Hardware Information
+Copyright (c) 2016-2022 The OSHI Project Contributors
+
+==
+
+This product includes software developed by ScribeJava
+Copyright (c) 2010 Pablo Fernandez
+
+==
+
+This product includes software developed by the Gson project.
+Copyright (c) 2008 Google Inc.
+
+==
+
+This product includes software developed by Error Prone.
+
+==
+
+This product includes software developed by the Google Guava project.
+Copyright (c) 2016 The Guava Authors.
+
+==
+
+This product includes software developed by J2ObjC: Java to Objective-C Translator and Runtime.
+
+==
+
+This product includes software developed by ZXing
+Copyright: 2007-2020, ZXing authors
+
+==
+
+This product includes software developed by mchange-commons-java
+Copyright (C) 2015 Machinery For Change, Inc.
+
+==
+
+This product includes software developed by Microsoft OAuth 2.0 User Agent library for Java
+Copyright (c) Microsoft Corporation
+
+==
+
+This product includes software developed by Nimbus Content Type
+Copyright 2020, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus Language Tags
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus JOSE-JWT
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by OAuth 2.0 SDK with OpenID Connect extensions
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Moshi
+Copyright (C) 2020 Square, Inc.
+
+==
+
+This product includes software developed by OkHttp
+Copyright (c) 2022 Square, Inc.
+
+==
+
+This product includes software developed by Okio
+Copyright 2013 Square, Inc.
+
+==
+
+This product includes software developed by Retrofit
+Copyright 2014 Square, Inc.
+
+==
+
+This product includes software developed by Retrofit
+Copyright 2014 Square, Inc.
+
+==
+
+This product includes software developed by Jakarta Mail
+Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the JAXB project.
+Copyright (c) 2013-2016 The JAXB project.
+
+==
+
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by QDox.
+Copyright 2002-2009 Joe Walnes and QDox Project Team
+
+==
+
+This product includes software developed by Semver4j
+Copyright (c) 2015-present Vincent DURMONT <vd...@gmail.com>
+
+==
+
+This product includes software developed by GoogleAuth
+Copyright (c) 2013 Warren Strange
+Copyright (c) 2014-2017 Enrico M. Crisostomo
+
+==
+
+This product includes software developed by Yubico
+Copyright (c) 2014-2018, Yubico AB
+
+==
+
+This product includes software developed by Dough Lea
+
+==
+
+This product includes software developed by DataTables
+Copyright (c) 2008-present, SpryMedia Limited
+
+==
+
+This product includes software developed by de.cronn:reflection-util
+Copyright © 2015-2021 the original authors.
+
+==
+
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by es5-shim
+Copyright (C) 2009-2016 Kristopher Michael Kowal and contributors
+
+==
+
+This product includes software developed by the Metrics project.
+Copyright (c) 2010-2014 Coda Hale, Yammer.com
+
+==
+
+This product includes software developed by the ClassGraph project.
+Copyright (c) 2020 Luke Hutchison
+
+==
+
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
+
+==
+
+This product includes software developed by the Swagger project.
+Copyright 2016 SmartBear Software
+
+==
+
+This product includes software developed by Userinfo.io
+Copyright (c) 2014 Vincent DURMONT <vd...@gmail.com>
+
+==
+
+This product includes software developed by Apereo CAS
+Copyright 2022, The Apereo Foundation
+
+==
+
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
+
+==
+
+This product includes software developed by Expression Language 3.0 API
+Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by Java(TM) Persistence API
+Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by Java Servlet API
+Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
+Copyright (c) Red Hat, Inc., Emmanuel Bernard
+
+==
+
+This product includes software developed by the SAAJ Standard Implementation (https://saaj.java.net/).
+ Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the JAX-WS project.
+ Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the Jline v2 project.
+Copyright (c) 2002-2016, the original author or authors.
+All rights reserved.
+
+==
+
+This product includes software developed by the Joda Time project.
+Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
+
+==
+
+This product includes the jQuery Core JavaScript Library.
+Copyright 2007, 2016 jQuery Foundation and other contributors.
+
+==
+
+This product includes software developed by Byte Buddy
+Copyright 2014 - Present Rafael Winterhalter
+
+==
+
+This product includes software developed by Groovy Extensions
+Copyright 2022, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by Thymeleaf Expression Processor
+Copyright 2016, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by Thymeleaf Layout Dialect
+Copyright 2019, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by OGNL
+Copyright (c) 2004, Drew Davidson and Luke Blanshard
+
+==
+
+This product includes AspectJ (>= 1.52) software developed by the Eclipse
+Software Foundation.
+
+==
+
+This product includes software developed by attoparser
+Copyright (c) 2012-2014, The ATTOPARSER team (http://www.attoparser.org)
+
+==
+
+This product includes software developed by jose.4.j
+Copyright 2012-2015 Brian Campbell
+
+==
+
+This product includes software developed by the Legion of the Bouncy Castle.
+Copyright (c) 2000-2016 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
+
+==
+
+This product includes software developed by The Checker Framework.
+Copyright (c) 2004-present by the Checker Framework developers
+
+==
+
+This product includes software developed by the Stax 2 Extension API Project.
+
+==
+
+This product includes software developed by the Woodstox Project.
+
+==
+
+This product includes software developed by Java EE API modules repackaged as OSGi bundles in GlassFish
+Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software produced and maintained by Jakarta JSON Processing
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by Hjson Library
+Copyright (c) 2013, 2014 EclipseSource
+Copyright (c) 2015-2016 Christian Zangl
+
+==
+
+This product includes software developed by Java Apereo CAS Client
+Copyright (c) 2007, JA-SIG, Inc.
+
+==
+
+This project includes software developed by the Jasypt project.
+Copyright (c) 2014 The JASYPT team. All Rights Reserved
+
+==
+
+This product includes softare developed by the Javassist project.
+Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
+
+==
+
+This product includes software developed by the JDOM project.
+ Copyright (C) 2000-2012 Jason Hunter & Brett McLaughlin.
+ All rights reserved.
+
+==
+
+This product includes software developed by JetBrains Java Annotations
+Copyright 2000-2021 JetBrains s.r.o.
+
+==
+
+This product includes software developed by jOOL
+Copyright (c), Data Geekery GmbH, contact@datageekery.com
+
+==
+
+This product includes software developed by JSON in Java
+Copyright (c) 2002 JSON.org
+
+==
+
+This product includes software developed by jsoup
+Copyright (c) 2009-2022 Jonathan Hedley
+
+==
+
+This product includes software developed by Ldaptive Java Library
+Copyright (C) 2003-2021 Virginia Tech. All Rights Reserved.
+
+==
+
+This product includes software developed by Objenesis
+Copyright 2006-2022 the original author or authors.
+
+==
+
+This product includes software developed by the Shibboleth project.
+
+==
+
+This product includes software developed by the ASM project.
+Copyright (c) 2000-2011 INRIA, France Telecom
+All rights reserved.
+
+==
+
+This product includes software developed by Project Lombok
+Copyright (C) 2009-2021 The Project Lombok Authors.
+
+==
+
+This product includes software developed by Terracotta. Inc.
+Quartz Scheduler source code and documentation are Copyright (c) Terracotta, Inc.
+
+==
+
+This product includes software developed by the Reflections project.
+
+==
+
+This products includes software developed by the Simple Logging Facade for Java (SLF4J) project.
+Copyright (c) 2004-2016 QOS.ch.
+
+==
+
+This product includes software developed by Spring openapi documentation
+Copyright 2019-2020 the original author or authors.
+
+==
+
+This product includes software developed by SpringSource.
+Copyright (c) 2004-2022 SpringSource
+All rights reserved.
+
+==
+
+This product includes software developed by Thymeleaf
+Copyright (c) 2011-2018, The THYMELEAF team (http://www.thymeleaf.org)
+
+==
+
+This product includes software developed by unbescape
+Copyright 2012 Twitter, Inc.
+
+==
+
+This product includes software developed by zxcvbn
+Copyright (c) 2012-2016 Dan Wheeler and Dropbox, Inc.
+
+==
+
+This product includes software developed by balanced-match
+Copyright (c) 2013 Julian Gruber <ju...@juliangruber.com>
+
+==
+
+This product includes software developed by base64-js
+Copyright (c) 2014 Jameson Little
+
+==
+
+This product includes software developed by css-vars-ponyfill
+Copyright (c) 2018 John Hildenbiddle
+
+==
+
+This product includes software developed by get-css-data
+Copyright (c) 2018 John Hildenbiddle
+
+==
+
+This product includes software developed by Material Components for the web
+Copyright 2018 Google Inc.
+
+==
+
+This product includes software developed by normalize.css
+Copyright © Nicolas Gallagher and Jonathan Neal
+
+==
+
+This product includes software developed by tslib
+Copyright (c) Microsoft Corporation.
+
+==
+
+This product includes software developed by window.fetch polyfill
+Copyright (c) 2014-2016 GitHub, Inc.
+
+==
+
+This product includes software developed by the SnakeYAML project.
+
+==
+
+This product includes software developed by Webjars-locator core functionality
+Copyright (c) 2013 James Ward
diff --git a/ext/elasticsearch/client-elasticsearch/pom.xml b/ext/elasticsearch/client-elasticsearch/pom.xml
index 10bf6c859f..72bf9614ab 100644
--- a/ext/elasticsearch/client-elasticsearch/pom.xml
+++ b/ext/elasticsearch/client-elasticsearch/pom.xml
@@ -48,10 +48,6 @@ under the License.
       <groupId>co.elastic.clients</groupId>
       <artifactId>elasticsearch-java</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.elasticsearch.client</groupId>
-      <artifactId>elasticsearch-rest-client</artifactId>
-    </dependency>
     <dependency>
       <groupId>jakarta.json</groupId>
       <artifactId>jakarta.json-api</artifactId>
diff --git a/fit/build-tools/LICENSE b/fit/build-tools/LICENSE
index 2619dfee88..3ee5c44e3c 100644
--- a/fit/build-tools/LICENSE
+++ b/fit/build-tools/LICENSE
@@ -213,6 +213,215 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For H2 (http://www.h2database.com/):
+This is licensed under the EPL 1.0:
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and documentation
+   distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+    i) changes to the Program, and
+   ii) additions to the Program;
+
+   where such changes and/or additions to the Program originate from and are
+   distributed by that particular Contributor. A Contribution 'originates'
+   from a Contributor if it was added to the Program by such Contributor
+   itself or anyone acting on such Contributor's behalf. Contributions do not
+   include additions to the Program which: (i) are separate modules of
+   software distributed in conjunction with the Program under their own
+   license agreement, and (ii) are not derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+  a) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free copyright license to
+     reproduce, prepare derivative works of, publicly display, publicly
+     perform, distribute and sublicense the Contribution of such Contributor,
+     if any, and such derivative works, in source code and object code form.
+  b) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free patent license under
+     Licensed Patents to make, use, sell, offer to sell, import and otherwise
+     transfer the Contribution of such Contributor, if any, in source code and
+     object code form. This patent license shall apply to the combination of
+     the Contribution and the Program if, at the time the Contribution is
+     added by the Contributor, such addition of the Contribution causes such
+     combination to be covered by the Licensed Patents. The patent license
+     shall not apply to any other combinations which include the Contribution.
+     No hardware per se is licensed hereunder.
+  c) Recipient understands that although each Contributor grants the licenses
+     to its Contributions set forth herein, no assurances are provided by any
+     Contributor that the Program does not infringe the patent or other
+     intellectual property rights of any other entity. Each Contributor
+     disclaims any liability to Recipient for claims brought by any other
+     entity based on infringement of intellectual property rights or
+     otherwise. As a condition to exercising the rights and licenses granted
+     hereunder, each Recipient hereby assumes sole responsibility to secure
+     any other intellectual property rights needed, if any. For example, if a
+     third party patent license is required to allow Recipient to distribute
+     the Program, it is Recipient's responsibility to acquire that license
+     before distributing the Program.
+  d) Each Contributor represents that to its knowledge it has sufficient
+     copyright rights in its Contribution, if any, to grant the copyright
+     license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+  a) it complies with the terms and conditions of this Agreement; and
+  b) its license agreement:
+      i) effectively disclaims on behalf of all Contributors all warranties
+         and conditions, express and implied, including warranties or
+         conditions of title and non-infringement, and implied warranties or
+         conditions of merchantability and fitness for a particular purpose;
+     ii) effectively excludes on behalf of all Contributors all liability for
+         damages, including direct, indirect, special, incidental and
+         consequential damages, such as lost profits;
+    iii) states that any provisions which differ from this Agreement are
+         offered by that Contributor alone and not by any other party; and
+     iv) states that source code for the Program is available from such
+         Contributor, and informs licensees how to obtain it in a reasonable
+         manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+  a) it must be made available under this Agreement; and
+  b) a copy of this Agreement must be included with each copy of the Program.
+     Contributors may not remove or alter any copyright notices contained
+     within the Program.
+
+Each Contributor must identify itself as the originator of its Contribution,
+if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore,
+if a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses,
+damages and costs (collectively "Losses") arising from claims, lawsuits and
+other legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such Commercial
+Contributor in connection with its distribution of the Program in a commercial
+product offering. The obligations in this section do not apply to any claims
+or Losses relating to any actual or alleged intellectual property
+infringement. In order to qualify, an Indemnified Contributor must:
+a) promptly notify the Commercial Contributor in writing of such claim, and
+b) allow the Commercial Contributor to control, and cooperate with the
+Commercial Contributor in, the defense and any related settlement
+negotiations. The Indemnified Contributor may participate in any such claim at
+its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If
+that Commercial Contributor then makes performance claims, or offers
+warranties related to Product X, those performance claims and warranties are
+such Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to the
+risks and costs of program errors, compliance with applicable laws, damage to
+or loss of data, programs or equipment, and unavailability or interruption of
+operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
+LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
+EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of the
+remainder of the terms of this Agreement, and without further action by the
+parties hereto, such provision shall be reformed to the minimum extent
+necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a
+cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+(excluding combinations of the Program with other software or hardware)
+infringes such Recipient's patent(s), then such Recipient's rights granted
+under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to
+time. No one other than the Agreement Steward has the right to modify this
+Agreement. The Eclipse Foundation is the initial Agreement Steward. The
+Eclipse Foundation may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement will
+be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version of the
+Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly
+stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
+licenses to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in the
+Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial in
+any resulting litigation.
+
+==
+
 For GreenMail (http://www.icegreen.com/greenmail/):
 This is licensed under the AL 2.0, see above.
 
@@ -223,7 +432,67 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For JAX-B (http://jaxb.java.net/):
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+==
+
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Bean Validation API (http://beanvalidation.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For ConnId (http://connid.tirasa.net/):
 This is licensed under the CDDL 1.0:
 
 COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
@@ -609,7 +878,7 @@ of liability.
 
 ==
 
-For ClassGraph (https://github.com/classgraph/classgraph):
+For Legion of the Bouncy Castle (http://www.bouncycastle.org/java.html):
 This is licensed under the MIT license:
 
  Permission is hereby granted, free  of charge, to any person obtaining
@@ -633,265 +902,6 @@ This is licensed under the MIT license:
 
 ==
 
-For Swagger (http://swagger.io/):
-This is licensed under the AL 2.0, see above.
-
-==
-
-For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
-This is licensed under the EPL 1.0:
-
-Eclipse Public License - v 1.0
-
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
-LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
-CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
-1. DEFINITIONS
-
-"Contribution" means:
-
-a) in the case of the initial Contributor, the initial code and documentation
-   distributed under this Agreement, and
-b) in the case of each subsequent Contributor:
-    i) changes to the Program, and
-   ii) additions to the Program;
-
-   where such changes and/or additions to the Program originate from and are
-   distributed by that particular Contributor. A Contribution 'originates'
-   from a Contributor if it was added to the Program by such Contributor
-   itself or anyone acting on such Contributor's behalf. Contributions do not
-   include additions to the Program which: (i) are separate modules of
-   software distributed in conjunction with the Program under their own
-   license agreement, and (ii) are not derivative works of the Program.
-
-"Contributor" means any person or entity that distributes the Program.
-
-"Licensed Patents" mean patent claims licensable by a Contributor which are
-necessarily infringed by the use or sale of its Contribution alone or when
-combined with the Program.
-
-"Program" means the Contributions distributed in accordance with this
-Agreement.
-
-"Recipient" means anyone who receives the Program under this Agreement,
-including all Contributors.
-
-2. GRANT OF RIGHTS
-  a) Subject to the terms of this Agreement, each Contributor hereby grants
-     Recipient a non-exclusive, worldwide, royalty-free copyright license to
-     reproduce, prepare derivative works of, publicly display, publicly
-     perform, distribute and sublicense the Contribution of such Contributor,
-     if any, and such derivative works, in source code and object code form.
-  b) Subject to the terms of this Agreement, each Contributor hereby grants
-     Recipient a non-exclusive, worldwide, royalty-free patent license under
-     Licensed Patents to make, use, sell, offer to sell, import and otherwise
-     transfer the Contribution of such Contributor, if any, in source code and
-     object code form. This patent license shall apply to the combination of
-     the Contribution and the Program if, at the time the Contribution is
-     added by the Contributor, such addition of the Contribution causes such
-     combination to be covered by the Licensed Patents. The patent license
-     shall not apply to any other combinations which include the Contribution.
-     No hardware per se is licensed hereunder.
-  c) Recipient understands that although each Contributor grants the licenses
-     to its Contributions set forth herein, no assurances are provided by any
-     Contributor that the Program does not infringe the patent or other
-     intellectual property rights of any other entity. Each Contributor
-     disclaims any liability to Recipient for claims brought by any other
-     entity based on infringement of intellectual property rights or
-     otherwise. As a condition to exercising the rights and licenses granted
-     hereunder, each Recipient hereby assumes sole responsibility to secure
-     any other intellectual property rights needed, if any. For example, if a
-     third party patent license is required to allow Recipient to distribute
-     the Program, it is Recipient's responsibility to acquire that license
-     before distributing the Program.
-  d) Each Contributor represents that to its knowledge it has sufficient
-     copyright rights in its Contribution, if any, to grant the copyright
-     license set forth in this Agreement.
-
-3. REQUIREMENTS
-
-A Contributor may choose to distribute the Program in object code form under
-its own license agreement, provided that:
-
-  a) it complies with the terms and conditions of this Agreement; and
-  b) its license agreement:
-      i) effectively disclaims on behalf of all Contributors all warranties
-         and conditions, express and implied, including warranties or
-         conditions of title and non-infringement, and implied warranties or
-         conditions of merchantability and fitness for a particular purpose;
-     ii) effectively excludes on behalf of all Contributors all liability for
-         damages, including direct, indirect, special, incidental and
-         consequential damages, such as lost profits;
-    iii) states that any provisions which differ from this Agreement are
-         offered by that Contributor alone and not by any other party; and
-     iv) states that source code for the Program is available from such
-         Contributor, and informs licensees how to obtain it in a reasonable
-         manner on or through a medium customarily used for software exchange.
-
-When the Program is made available in source code form:
-
-  a) it must be made available under this Agreement; and
-  b) a copy of this Agreement must be included with each copy of the Program.
-     Contributors may not remove or alter any copyright notices contained
-     within the Program.
-
-Each Contributor must identify itself as the originator of its Contribution,
-if
-any, in a manner that reasonably allows subsequent Recipients to identify the
-originator of the Contribution.
-
-4. COMMERCIAL DISTRIBUTION
-
-Commercial distributors of software may accept certain responsibilities with
-respect to end users, business partners and the like. While this license is
-intended to facilitate the commercial use of the Program, the Contributor who
-includes the Program in a commercial product offering should do so in a manner
-which does not create potential liability for other Contributors. Therefore,
-if a Contributor includes the Program in a commercial product offering, such
-Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
-every other Contributor ("Indemnified Contributor") against any losses,
-damages and costs (collectively "Losses") arising from claims, lawsuits and
-other legal actions brought by a third party against the Indemnified
-Contributor to the extent caused by the acts or omissions of such Commercial
-Contributor in connection with its distribution of the Program in a commercial
-product offering. The obligations in this section do not apply to any claims
-or Losses relating to any actual or alleged intellectual property
-infringement. In order to qualify, an Indemnified Contributor must:
-a) promptly notify the Commercial Contributor in writing of such claim, and
-b) allow the Commercial Contributor to control, and cooperate with the
-Commercial Contributor in, the defense and any related settlement
-negotiations. The Indemnified Contributor may participate in any such claim at
-its own expense.
-
-For example, a Contributor might include the Program in a commercial product
-offering, Product X. That Contributor is then a Commercial Contributor. If
-that Commercial Contributor then makes performance claims, or offers
-warranties related to Product X, those performance claims and warranties are
-such Commercial Contributor's responsibility alone. Under this section, the
-Commercial Contributor would have to defend claims against the other
-Contributors related to those performance claims and warranties, and if a
-court requires any other Contributor to pay any damages as a result, the
-Commercial Contributor must pay those damages.
-
-5. NO WARRANTY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
-IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
-NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
-Recipient is solely responsible for determining the appropriateness of using
-and distributing the Program and assumes all risks associated with its
-exercise of rights under this Agreement , including but not limited to the
-risks and costs of program errors, compliance with applicable laws, damage to
-or loss of data, programs or equipment, and unavailability or interruption of
-operations.
-
-6. DISCLAIMER OF LIABILITY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
-CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
-LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
-EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
-OF SUCH DAMAGES.
-
-7. GENERAL
-
-If any provision of this Agreement is invalid or unenforceable under
-applicable law, it shall not affect the validity or enforceability of the
-remainder of the terms of this Agreement, and without further action by the
-parties hereto, such provision shall be reformed to the minimum extent
-necessary to make such provision valid and enforceable.
-
-If Recipient institutes patent litigation against any entity (including a
-cross-claim or counterclaim in a lawsuit) alleging that the Program itself
-(excluding combinations of the Program with other software or hardware)
-infringes such Recipient's patent(s), then such Recipient's rights granted
-under Section 2(b) shall terminate as of the date such litigation is filed.
-
-All Recipient's rights under this Agreement shall terminate if it fails to
-comply with any of the material terms or conditions of this Agreement and does
-not cure such failure in a reasonable period of time after becoming aware of
-such noncompliance. If all Recipient's rights under this Agreement terminate,
-Recipient agrees to cease use and distribution of the Program as soon as
-reasonably practicable. However, Recipient's obligations under this Agreement
-and any licenses granted by Recipient relating to the Program shall continue
-and survive.
-
-Everyone is permitted to copy and distribute copies of this Agreement, but in
-order to avoid inconsistency the Agreement is copyrighted and may only be
-modified in the following manner. The Agreement Steward reserves the right to
-publish new versions (including revisions) of this Agreement from time to
-time. No one other than the Agreement Steward has the right to modify this
-Agreement. The Eclipse Foundation is the initial Agreement Steward. The
-Eclipse Foundation may assign the responsibility to serve as the Agreement
-Steward to a suitable separate entity. Each new version of the Agreement will
-be given a distinguishing version number. The Program (including
-Contributions) may always be distributed subject to the version of the
-Agreement under which it was received. In addition, after a new version of the
-Agreement is published, Contributor may elect to distribute the Program
-(including its Contributions) under the new version. Except as expressly
-stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
-licenses to the intellectual property of any Contributor under this Agreement,
-whether expressly, by implication, estoppel or otherwise. All rights in the
-Program not expressly granted under this Agreement are reserved.
-
-This Agreement is governed by the laws of the State of New York and the
-intellectual property laws of the United States of America. No party to this
-Agreement will bring a legal action under this Agreement more than one year
-after the cause of action arose. Each party waives its rights to a jury trial in
-any resulting litigation.
-
-==
-
-For Jakarta XML Binding (https://eclipse-ee4j.github.io/jaxb-ri/):
-This is licensed under the EPL 1.0, see above.
-
-==
-
-For javax.annotation-api (https://jcp.org/en/jsr/detail?id=250):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For Web Services Metadata for the Java Platform (https://jcp.org/en/jsr/detail?id=181):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For Bean Validation API (http://beanvalidation.org/):
-This is licensed under the AL 2.0, see above.
-
-==
-
-For javax.ws.rs-api (https://jax-rs-spec.java.net/):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For SAAJ Standard Implementation (https://saaj.java.net/):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For javax.ws.rs-api (https://jax-ws.java.net/):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For ConnId (http://connid.tirasa.net/):
-This is licensed under the CDDL 1.0, see above.
-
-==
-
-For Legion of the Bouncy Castle (http://www.bouncycastle.org/java.html):
-This is licensed under the MIT license, see above.
-
-==
-
 For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
 This is licensed under the BSD license:
 
@@ -927,11 +937,6 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For Javassist (https://jboss-javassist.github.io/javassist/):
-This is licensed under the AL 2.0, see above.
-
-==
-
 For ASM (http://asm.ow2.org/):
 This is licensed under the BSD license, see above.
 
@@ -942,7 +947,7 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Spring Framework (http://projects.spring.io/spring-framework/):
+For Spring (https://spring.io/projects):
 This is licensed under the AL 2.0, see above.
 
 ==
diff --git a/fit/build-tools/NOTICE b/fit/build-tools/NOTICE
index e0e1f08726..a99d5ffcff 100644
--- a/fit/build-tools/NOTICE
+++ b/fit/build-tools/NOTICE
@@ -23,38 +23,34 @@ Copyright (c) 2006 - 2019, Wael Chatila and GreenMail project contributors
 
 ==
 
-This product includes software developed by the JAXB project.
-Copyright (c) 2013-2016 The JAXB project.
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes software developed by the ClassGraph project.
-Copyright (c) 2020 Luke Hutchison
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes software developed by the Swagger project.
-Copyright 2016 SmartBear Software
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes software developed by the Eclipse Foundation.
-Copyright (c) 2019, 2020 Eclipse Foundation. All rights reserved.
+This product includes software produced and maintained by Jakarta Annotations
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includs software developed by Oracle.
-Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
-
-==
-
-This product includes software developed by the Java Community Process (https://jcp.org/en/jsr/detail?id=181).
- Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
 
 ==
 
@@ -63,21 +59,6 @@ Copyright (c) Red Hat, Inc., Emmanuel Bernard
 
 ==
 
-This product includes software developed by the JAX-RS project.
-Copyright (c) 2014, Oracle Corporation and/or its affiliates. All rights reserved.
-
-==
-
-This product includes software developed by the SAAJ Standard Implementation (https://saaj.java.net/).
- Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
-
-==
-
-This product includes software developed by the JAX-WS project.
- Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
-
-==
-
 This product includes software developed by the ConnId project.
 Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
 Copyright 2011-2016 Tirasa S.r.l. All rights reserved.
@@ -97,11 +78,6 @@ This product includes software developed by the Woodstox Project.
 
 ==
 
-This product includes softare developed by the Javassist project.
-Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
-
-==
-
 This product includes software developed by the ASM project.
 Copyright (c) 2000-2011 INRIA, France Telecom
 All rights reserved.
@@ -114,7 +90,7 @@ Copyright (c) 2004-2016 QOS.ch.
 ==
 
 This product includes software developed by SpringSource.
-Copyright (c) 2004-2016 SpringSource
+Copyright (c) 2004-2022 SpringSource
 All rights reserved.
 
 ==
diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuthModuleITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuthModuleITCase.java
index e04fd318db..6e513ae44c 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuthModuleITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/AuthModuleITCase.java
@@ -41,7 +41,6 @@ import org.apache.syncope.common.lib.auth.JDBCAuthModuleConf;
 import org.apache.syncope.common.lib.auth.JaasAuthModuleConf;
 import org.apache.syncope.common.lib.auth.LDAPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.OIDCAuthModuleConf;
-import org.apache.syncope.common.lib.auth.RadiusAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SAML2IdPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.StaticAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SyncopeAuthModuleConf;
@@ -61,7 +60,6 @@ public class AuthModuleITCase extends AbstractITCase {
         JAAS,
         JDBC,
         U2F,
-        RADIUS,
         OIDC;
 
     };
@@ -143,14 +141,6 @@ public class AuthModuleITCase extends AbstractITCase {
                 U2FAuthModuleConf.class.cast(conf).setExpireDevices(50);
                 break;
 
-            case RADIUS:
-                conf = new RadiusAuthModuleConf();
-                RadiusAuthModuleConf.class.cast(conf).setProtocol("MSCHAPv2");
-                RadiusAuthModuleConf.class.cast(conf).setInetAddress("1.2.3.4");
-                RadiusAuthModuleConf.class.cast(conf).setSharedSecret("xyz");
-                RadiusAuthModuleConf.class.cast(conf).setSocketTimeout(40);
-                break;
-
             case STATIC:
             default:
                 conf = new StaticAuthModuleConf();
@@ -193,7 +183,7 @@ public class AuthModuleITCase extends AbstractITCase {
                 authModule -> isSpecificConf(authModule.getConf(), GoogleMfaAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultGoogleMfaAuthModule")));
         assertTrue(authModuleTOs.stream().anyMatch(
-            authModule -> isSpecificConf(authModule.getConf(), DuoMfaAuthModuleConf.class)
+                authModule -> isSpecificConf(authModule.getConf(), DuoMfaAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultDuoMfaAuthModule")));
         assertTrue(authModuleTOs.stream().anyMatch(
                 authModule -> isSpecificConf(authModule.getConf(), OIDCAuthModuleConf.class)
@@ -213,9 +203,6 @@ public class AuthModuleITCase extends AbstractITCase {
         assertTrue(authModuleTOs.stream().anyMatch(
                 authModule -> isSpecificConf(authModule.getConf(), U2FAuthModuleConf.class)
                 && authModule.getKey().equals("DefaultU2FAuthModule")));
-        assertTrue(authModuleTOs.stream().anyMatch(
-                authModule -> isSpecificConf(authModule.getConf(), RadiusAuthModuleConf.class)
-                && authModule.getKey().equals("DefaultRadiusAuthModule")));
     }
 
     @Test
@@ -304,16 +291,6 @@ public class AuthModuleITCase extends AbstractITCase {
         assertNotNull(authModuleTO);
         assertTrue(StringUtils.isNotBlank(authModuleTO.getDescription()));
         assertTrue(isSpecificConf(authModuleTO.getConf(), SyncopeAuthModuleConf.class));
-        assertFalse(isSpecificConf(authModuleTO.getConf(), RadiusAuthModuleConf.class));
-    }
-
-    @Test
-    public void getRadiusAuthModule() {
-        AuthModuleTO authModuleTO = authModuleService.read("DefaultRadiusAuthModule");
-
-        assertNotNull(authModuleTO);
-        assertTrue(StringUtils.isNotBlank(authModuleTO.getDescription()));
-        assertTrue(isSpecificConf(authModuleTO.getConf(), RadiusAuthModuleConf.class));
         assertFalse(isSpecificConf(authModuleTO.getConf(), U2FAuthModuleConf.class));
     }
 
@@ -523,29 +500,6 @@ public class AuthModuleITCase extends AbstractITCase {
         assertEquals(2, StaticAuthModuleConf.class.cast(conf).getUsers().size());
     }
 
-    @Test
-    public void updateRadiusAuthModule() {
-        AuthModuleTO radiusAuthModuleTO = authModuleService.read("DefaultRadiusAuthModule");
-        assertNotNull(radiusAuthModuleTO);
-
-        AuthModuleTO newRadiusAuthModuleTO = buildAuthModuleTO(AuthModuleSupportedType.RADIUS);
-        newRadiusAuthModuleTO = createAuthModule(newRadiusAuthModuleTO);
-        assertNotNull(newRadiusAuthModuleTO);
-
-        AuthModuleConf conf = radiusAuthModuleTO.getConf();
-        assertNotNull(conf);
-        RadiusAuthModuleConf.class.cast(conf).setSocketTimeout(45);
-        newRadiusAuthModuleTO.setConf(conf);
-
-        // update new auth module
-        authModuleService.update(newRadiusAuthModuleTO);
-        newRadiusAuthModuleTO = authModuleService.read(newRadiusAuthModuleTO.getKey());
-        assertNotNull(newRadiusAuthModuleTO);
-
-        conf = newRadiusAuthModuleTO.getConf();
-        assertEquals(45, RadiusAuthModuleConf.class.cast(conf).getSocketTimeout());
-    }
-
     @Test
     public void updateU2fAuthModule() {
         AuthModuleTO u2fAuthModuleTO = authModuleService.read("DefaultU2FAuthModule");
diff --git a/pom.xml b/pom.xml
index 6ffe2739ad..bb3e055ec4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -397,7 +397,7 @@ under the License.
     <connid.database.version>2.2.8</connid.database.version>
     <connid.csvdir.version>0.8.9</connid.csvdir.version>
     <connid.ldap.version>1.5.5</connid.ldap.version>
-    <connid.ad.version>1.3.7</connid.ad.version>
+    <connid.ad.version>1.3.8</connid.ad.version>
     <connid.googleapps.version>1.4.3</connid.googleapps.version>
     <connid.azure.version>2.0.0</connid.azure.version>
     <connid.scimv11.version>1.0.2</connid.scimv11.version>
@@ -430,7 +430,7 @@ under the License.
 
     <slf4j.version>1.7.36</slf4j.version>
 
-    <elasticsearch.version>8.1.3</elasticsearch.version>
+    <elasticsearch.version>8.2.0</elasticsearch.version>
 
     <apacheds.version>2.0.0.AM26</apacheds.version>
     <apachedirapi.version>2.0.0</apachedirapi.version>
@@ -467,8 +467,8 @@ under the License.
     <jsplumb.version>2.0.7</jsplumb.version>
     <chartjs.version>1.0.2</chartjs.version>
 
-    <wicket.version>9.9.1</wicket.version>
-    <wicketstuff.version>9.9.1</wicketstuff.version>
+    <wicket.version>9.10.0</wicket.version>
+    <wicketstuff.version>9.10.0</wicketstuff.version>
     <wicket-jqueryui.version>9.8.0</wicket-jqueryui.version>
     <wicket-bootstrap.version>5.0.6</wicket-bootstrap.version>
     <wicket-spring-boot.version>3.1.6</wicket-spring-boot.version>
@@ -684,11 +684,6 @@ under the License.
         <artifactId>elasticsearch-java</artifactId>
         <version>${elasticsearch.version}</version>
       </dependency>
-      <dependency>
-        <groupId>org.elasticsearch.client</groupId>
-        <artifactId>elasticsearch-rest-client</artifactId>
-        <version>7.16.1</version>
-      </dependency>
       <dependency>
         <groupId>jakarta.json</groupId>
         <artifactId>jakarta.json-api</artifactId>
@@ -1041,7 +1036,7 @@ under the License.
       <dependency>
         <groupId>org.apache.tika</groupId>
         <artifactId>tika-core</artifactId>
-        <version>2.3.0</version>
+        <version>2.4.0</version>
       </dependency>
 
       <dependency>
@@ -1262,6 +1257,12 @@ under the License.
         <groupId>org.pac4j</groupId>
         <artifactId>pac4j-saml</artifactId>
         <version>${pac4j.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-core</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.pac4j</groupId>
@@ -1417,27 +1418,6 @@ under the License.
         <artifactId>cas-server-support-themes</artifactId>
         <version>${cas.version}</version>
       </dependency>
-      <dependency>
-        <groupId>org.apereo.cas</groupId>
-        <artifactId>cas-server-support-radius-core</artifactId>
-        <version>${cas.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>gnu-getopt</groupId>
-            <artifactId>getopt</artifactId>
-          </exclusion>
-        </exclusions>
-      </dependency>
-      <dependency>
-        <groupId>org.apereo.cas</groupId>
-        <artifactId>cas-server-support-radius</artifactId>
-        <version>${cas.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.apereo.cas</groupId>
-        <artifactId>cas-server-support-radius-mfa</artifactId>
-        <version>${cas.version}</version>
-      </dependency>
       <dependency>
         <groupId>org.apereo.cas</groupId>
         <artifactId>cas-server-core-audit-api</artifactId>
@@ -1760,7 +1740,7 @@ under the License.
       <dependency>
         <groupId>org.apache.pdfbox</groupId>
         <artifactId>pdfbox</artifactId>
-        <version>3.0.0-RC1</version>
+        <version>3.0.0-alpha3</version>
       </dependency>
 
       <dependency>
diff --git a/sra/LICENSE b/sra/LICENSE
index d645695673..33a3e3ad4b 100644
--- a/sra/LICENSE
+++ b/sra/LICENSE
@@ -200,3 +200,1047 @@
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
+
+==
+
+For JCommander (https://jcommander.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jackson (http://wiki.fasterxml.com/JacksonHome):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JCIP Annotations (https://github.com/stephenc/jcip-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For FindBugs-jsr305 (http://findbugs.sourceforge.net/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Error Prone (https://errorprone.info/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Guava (https://github.com/google/guava):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For J2ObjC: Java to Objective-C Translator and Runtime (http://j2objc.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For LMAX Disruptor (https://lmax-exchange.github.io/disruptor/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus Content Type (https://bitbucket.org/connect2id/nimbus-content-type/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus Language Tags (https://bitbucket.org/connect2id/nimbus-language-tags/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus JOSE-JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OAuth 2.0 SDK with OpenID Connect extensions (https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JAX-B (http://jaxb.java.net/):
+This is licensed under the CDDL 1.0:
+
+COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
+
+1. Definitions.
+
+1.1. "Contributor" means each individual or entity that
+creates or contributes to the creation of Modifications.
+
+1.2. "Contributor Version" means the combination of the
+Original Software, prior Modifications used by a
+Contributor (if any), and the Modifications made by that
+particular Contributor.
+
+1.3. "Covered Software" means (a) the Original Software, or
+(b) Modifications, or (c) the combination of files
+containing Original Software with files containing
+Modifications, in each case including portions thereof.
+
+1.4. "Executable" means the Covered Software in any form
+other than Source Code.
+
+1.5. "Initial Developer" means the individual or entity
+that first makes Original Software available under this
+License.
+
+1.6. "Larger Work" means a work which combines Covered
+Software or portions thereof with code not governed by the
+terms of this License.
+
+1.7. "License" means this document.
+
+1.8. "Licensable" means having the right to grant, to the
+maximum extent possible, whether at the time of the initial
+grant or subsequently acquired, any and all of the rights
+conveyed herein.
+
+1.9. "Modifications" means the Source Code and Executable
+form of any of the following:
+
+A. Any file that results from an addition to,
+deletion from or modification of the contents of a
+file containing Original Software or previous
+Modifications;
+
+B. Any new file that contains any part of the
+Original Software or previous Modification; or
+
+C. Any new file that is contributed or otherwise made
+available under the terms of this License.
+
+1.10. "Original Software" means the Source Code and
+Executable form of computer software code that is
+originally released under this License.
+
+1.11. "Patent Claims" means any patent claim(s), now owned
+or hereafter acquired, including without limitation,
+method, process, and apparatus claims, in any patent
+Licensable by grantor.
+
+1.12. "Source Code" means (a) the common form of computer
+software code in which modifications are made and (b)
+associated documentation included in or with such code.
+
+1.13. "You" (or "Your") means an individual or a legal
+entity exercising rights under, and complying with all of
+the terms of, this License. For legal entities, "You"
+includes any entity which controls, is controlled by, or is
+under common control with You. For purposes of this
+definition, "control" means (a) the power, direct or
+indirect, to cause the direction or management of such
+entity, whether by contract or otherwise, or (b) ownership
+of more than fifty percent (50%) of the outstanding shares
+or beneficial ownership of such entity.
+
+2. License Grants.
+
+2.1. The Initial Developer Grant.
+
+Conditioned upon Your compliance with Section 3.1 below and
+subject to third party intellectual property claims, the
+Initial Developer hereby grants You a world-wide,
+royalty-free, non-exclusive license:
+
+(a) under intellectual property rights (other than
+patent or trademark) Licensable by Initial Developer,
+to use, reproduce, modify, display, perform,
+sublicense and distribute the Original Software (or
+portions thereof), with or without Modifications,
+and/or as part of a Larger Work; and
+
+(b) under Patent Claims infringed by the making,
+using or selling of Original Software, to make, have
+made, use, practice, sell, and offer for sale, and/or
+otherwise dispose of the Original Software (or
+portions thereof).
+
+(c) The licenses granted in Sections 2.1(a) and (b)
+are effective on the date Initial Developer first
+distributes or otherwise makes the Original Software
+available to a third party under the terms of this
+License.
+
+(d) Notwithstanding Section 2.1(b) above, no patent
+license is granted: (1) for code that You delete from
+the Original Software, or (2) for infringements
+caused by: (i) the modification of the Original
+Software, or (ii) the combination of the Original
+Software with other software or devices.
+
+2.2. Contributor Grant.
+
+Conditioned upon Your compliance with Section 3.1 below and
+subject to third party intellectual property claims, each
+Contributor hereby grants You a world-wide, royalty-free,
+non-exclusive license:
+
+(a) under intellectual property rights (other than
+patent or trademark) Licensable by Contributor to
+use, reproduce, modify, display, perform, sublicense
+and distribute the Modifications created by such
+Contributor (or portions thereof), either on an
+unmodified basis, with other Modifications, as
+Covered Software and/or as part of a Larger Work; and
+
+(b) under Patent Claims infringed by the making,
+using, or selling of Modifications made by that
+Contributor either alone and/or in combination with
+its Contributor Version (or portions of such
+combination), to make, use, sell, offer for sale,
+have made, and/or otherwise dispose of: (1)
+Modifications made by that Contributor (or portions
+thereof); and (2) the combination of Modifications
+made by that Contributor with its Contributor Version
+(or portions of such combination).
+
+(c) The licenses granted in Sections 2.2(a) and
+2.2(b) are effective on the date Contributor first
+distributes or otherwise makes the Modifications
+available to a third party.
+
+(d) Notwithstanding Section 2.2(b) above, no patent
+license is granted: (1) for any code that Contributor
+has deleted from the Contributor Version; (2) for
+infringements caused by: (i) third party
+modifications of Contributor Version, or (ii) the
+combination of Modifications made by that Contributor
+with other software (except as part of the
+Contributor Version) or other devices; or (3) under
+Patent Claims infringed by Covered Software in the
+absence of Modifications made by that Contributor.
+
+3. Distribution Obligations.
+
+3.1. Availability of Source Code.
+
+Any Covered Software that You distribute or otherwise make
+available in Executable form must also be made available in
+Source Code form and that Source Code form must be
+distributed only under the terms of this License. You must
+include a copy of this License with every copy of the
+Source Code form of the Covered Software You distribute or
+otherwise make available. You must inform recipients of any
+such Covered Software in Executable form as to how they can
+obtain such Covered Software in Source Code form in a
+reasonable manner on or through a medium customarily used
+for software exchange.
+
+3.2. Modifications.
+
+The Modifications that You create or to which You
+contribute are governed by the terms of this License. You
+represent that You believe Your Modifications are Your
+original creation(s) and/or You have sufficient rights to
+grant the rights conveyed by this License.
+
+3.3. Required Notices.
+
+You must include a notice in each of Your Modifications
+that identifies You as the Contributor of the Modification.
+You may not remove or alter any copyright, patent or
+trademark notices contained within the Covered Software, or
+any notices of licensing or any descriptive text giving
+attribution to any Contributor or the Initial Developer.
+
+3.4. Application of Additional Terms.
+
+You may not offer or impose any terms on any Covered
+Software in Source Code form that alters or restricts the
+applicable version of this License or the recipients'
+rights hereunder. You may choose to offer, and to charge a
+fee for, warranty, support, indemnity or liability
+obligations to one or more recipients of Covered Software.
+However, you may do so only on Your own behalf, and not on
+behalf of the Initial Developer or any Contributor. You
+must make it absolutely clear that any such warranty,
+support, indemnity or liability obligation is offered by
+You alone, and You hereby agree to indemnify the Initial
+Developer and every Contributor for any liability incurred
+by the Initial Developer or such Contributor as a result of
+warranty, support, indemnity or liability terms You offer.
+
+3.5. Distribution of Executable Versions.
+
+You may distribute the Executable form of the Covered
+Software under the terms of this License or under the terms
+of a license of Your choice, which may contain terms
+different from this License, provided that You are in
+compliance with the terms of this License and that the
+license for the Executable form does not attempt to limit
+or alter the recipient's rights in the Source Code form
+from the rights set forth in this License. If You
+distribute the Covered Software in Executable form under a
+different license, You must make it absolutely clear that
+any terms which differ from this License are offered by You
+alone, not by the Initial Developer or Contributor. You
+hereby agree to indemnify the Initial Developer and every
+Contributor for any liability incurred by the Initial
+Developer or such Contributor as a result of any such terms
+You offer.
+
+3.6. Larger Works.
+
+You may create a Larger Work by combining Covered Software
+with other code not governed by the terms of this License
+and distribute the Larger Work as a single product. In such
+a case, You must make sure the requirements of this License
+are fulfilled for the Covered Software.
+
+4. Versions of the License.
+
+4.1. New Versions.
+
+Sun Microsystems, Inc. is the initial license steward and
+may publish revised and/or new versions of this License
+from time to time. Each version will be given a
+distinguishing version number. Except as provided in
+Section 4.3, no one other than the license steward has the
+right to modify this License.
+
+4.2. Effect of New Versions.
+
+You may always continue to use, distribute or otherwise
+make the Covered Software available under the terms of the
+version of the License under which You originally received
+the Covered Software. If the Initial Developer includes a
+notice in the Original Software prohibiting it from being
+distributed or otherwise made available under any
+subsequent version of the License, You must distribute and
+make the Covered Software available under the terms of the
+version of the License under which You originally received
+the Covered Software. Otherwise, You may also choose to
+use, distribute or otherwise make the Covered Software
+available under the terms of any subsequent version of the
+License published by the license steward.
+
+4.3. Modified Versions.
+
+When You are an Initial Developer and You want to create a
+new license for Your Original Software, You may create and
+use a modified version of this License if You: (a) rename
+the license and remove any references to the name of the
+license steward (except to note that the license differs
+from this License); and (b) otherwise make it clear that
+the license contains terms which differ from this License.
+
+5. DISCLAIMER OF WARRANTY.
+
+COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
+BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
+INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
+SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
+PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
+PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
+COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
+INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
+ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
+WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
+ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
+DISCLAIMER.
+
+6. TERMINATION.
+
+6.1. This License and the rights granted hereunder will
+terminate automatically if You fail to comply with terms
+herein and fail to cure such breach within 30 days of
+becoming aware of the breach. Provisions which, by their
+nature, must remain in effect beyond the termination of
+this License shall survive.
+
+6.2. If You assert a patent infringement claim (excluding
+declaratory judgment actions) against Initial Developer or
+a Contributor (the Initial Developer or Contributor against
+whom You assert such claim is referred to as "Participant")
+alleging that the Participant Software (meaning the
+Contributor Version where the Participant is a Contributor
+or the Original Software where the Participant is the
+Initial Developer) directly or indirectly infringes any
+patent, then any and all rights granted directly or
+indirectly to You by such Participant, the Initial
+Developer (if the Initial Developer is not the Participant)
+and all Contributors under Sections 2.1 and/or 2.2 of this
+License shall, upon 60 days notice from Participant
+terminate prospectively and automatically at the expiration
+of such 60 day notice period, unless if within such 60 day
+period You withdraw Your claim with respect to the
+Participant Software against such Participant either
+unilaterally or pursuant to a written agreement with
+Participant.
+
+6.3. In the event of termination under Sections 6.1 or 6.2
+above, all end user licenses that have been validly granted
+by You or any distributor hereunder prior to termination
+(excluding licenses granted to You by any distributor)
+shall survive termination.
+
+7. LIMITATION OF LIABILITY.
+
+UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
+(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
+INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
+COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
+LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
+CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
+LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
+STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
+COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
+INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
+LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
+INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
+APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
+NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
+CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
+APPLY TO YOU.
+
+8. U.S. GOVERNMENT END USERS.
+
+The Covered Software is a "commercial item," as that term is
+defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
+computer software" (as that term is defined at 48 C.F.R. $
+252.227-7014(a)(1)) and "commercial computer software
+documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
+1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
+through 227.7202-4 (June 1995), all U.S. Government End Users
+acquire Covered Software with only those rights set forth herein.
+This U.S. Government Rights clause is in lieu of, and supersedes,
+any other FAR, DFAR, or other clause or provision that addresses
+Government rights in computer software under this License.
+
+9. MISCELLANEOUS.
+
+This License represents the complete agreement concerning subject
+matter hereof. If any provision of this License is held to be
+unenforceable, such provision shall be reformed only to the
+extent necessary to make it enforceable. This License shall be
+governed by the law of the jurisdiction specified in a notice
+contained within the Original Software (except to the extent
+applicable law, if any, provides otherwise), excluding such
+jurisdiction's conflict-of-law provisions. Any litigation
+relating to this License shall be subject to the jurisdiction of
+the courts located in the jurisdiction and venue specified in a
+notice contained within the Original Software, with the losing
+party responsible for costs, including, without limitation, court
+costs and reasonable attorneys' fees and expenses. The
+application of the United Nations Convention on Contracts for the
+International Sale of Goods is expressly excluded. Any law or
+regulation which provides that the language of a contract shall
+be construed against the drafter shall not apply to this License.
+You agree that You alone are responsible for compliance with the
+United States export administration regulations (and the export
+control laws and regulation of any other countries) when You use,
+distribute or otherwise make available any Covered Software.
+
+10. RESPONSIBILITY FOR CLAIMS.
+
+As between Initial Developer and the Contributors, each party is
+responsible for claims and damages arising, directly or
+indirectly, out of its utilization of rights under this License
+and You agree to work with Initial Developer and Contributors to
+distribute such responsibility on an equitable basis. Nothing
+herein is intended or shall be deemed to constitute any admission
+of liability.
+
+==
+
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+==
+
+For UnboundID LDAP SDK for Java (https://github.com/pingidentity/ldapsdk):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Metrics (http://dropwizard.github.io/metrics/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Micrometer Application Metrics (https://micrometer.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Project Reactor (https://projectreactor.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Swagger (http://swagger.io/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0:
+
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
+LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
+CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+a) in the case of the initial Contributor, the initial code and documentation
+   distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+    i) changes to the Program, and
+   ii) additions to the Program;
+
+   where such changes and/or additions to the Program originate from and are
+   distributed by that particular Contributor. A Contribution 'originates'
+   from a Contributor if it was added to the Program by such Contributor
+   itself or anyone acting on such Contributor's behalf. Contributions do not
+   include additions to the Program which: (i) are separate modules of
+   software distributed in conjunction with the Program under their own
+   license agreement, and (ii) are not derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents" mean patent claims licensable by a Contributor which are
+necessarily infringed by the use or sale of its Contribution alone or when
+combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+  a) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free copyright license to
+     reproduce, prepare derivative works of, publicly display, publicly
+     perform, distribute and sublicense the Contribution of such Contributor,
+     if any, and such derivative works, in source code and object code form.
+  b) Subject to the terms of this Agreement, each Contributor hereby grants
+     Recipient a non-exclusive, worldwide, royalty-free patent license under
+     Licensed Patents to make, use, sell, offer to sell, import and otherwise
+     transfer the Contribution of such Contributor, if any, in source code and
+     object code form. This patent license shall apply to the combination of
+     the Contribution and the Program if, at the time the Contribution is
+     added by the Contributor, such addition of the Contribution causes such
+     combination to be covered by the Licensed Patents. The patent license
+     shall not apply to any other combinations which include the Contribution.
+     No hardware per se is licensed hereunder.
+  c) Recipient understands that although each Contributor grants the licenses
+     to its Contributions set forth herein, no assurances are provided by any
+     Contributor that the Program does not infringe the patent or other
+     intellectual property rights of any other entity. Each Contributor
+     disclaims any liability to Recipient for claims brought by any other
+     entity based on infringement of intellectual property rights or
+     otherwise. As a condition to exercising the rights and licenses granted
+     hereunder, each Recipient hereby assumes sole responsibility to secure
+     any other intellectual property rights needed, if any. For example, if a
+     third party patent license is required to allow Recipient to distribute
+     the Program, it is Recipient's responsibility to acquire that license
+     before distributing the Program.
+  d) Each Contributor represents that to its knowledge it has sufficient
+     copyright rights in its Contribution, if any, to grant the copyright
+     license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form under
+its own license agreement, provided that:
+
+  a) it complies with the terms and conditions of this Agreement; and
+  b) its license agreement:
+      i) effectively disclaims on behalf of all Contributors all warranties
+         and conditions, express and implied, including warranties or
+         conditions of title and non-infringement, and implied warranties or
+         conditions of merchantability and fitness for a particular purpose;
+     ii) effectively excludes on behalf of all Contributors all liability for
+         damages, including direct, indirect, special, incidental and
+         consequential damages, such as lost profits;
+    iii) states that any provisions which differ from this Agreement are
+         offered by that Contributor alone and not by any other party; and
+     iv) states that source code for the Program is available from such
+         Contributor, and informs licensees how to obtain it in a reasonable
+         manner on or through a medium customarily used for software exchange.
+
+When the Program is made available in source code form:
+
+  a) it must be made available under this Agreement; and
+  b) a copy of this Agreement must be included with each copy of the Program.
+     Contributors may not remove or alter any copyright notices contained
+     within the Program.
+
+Each Contributor must identify itself as the originator of its Contribution,
+if
+any, in a manner that reasonably allows subsequent Recipients to identify the
+originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities with
+respect to end users, business partners and the like. While this license is
+intended to facilitate the commercial use of the Program, the Contributor who
+includes the Program in a commercial product offering should do so in a manner
+which does not create potential liability for other Contributors. Therefore,
+if a Contributor includes the Program in a commercial product offering, such
+Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
+every other Contributor ("Indemnified Contributor") against any losses,
+damages and costs (collectively "Losses") arising from claims, lawsuits and
+other legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such Commercial
+Contributor in connection with its distribution of the Program in a commercial
+product offering. The obligations in this section do not apply to any claims
+or Losses relating to any actual or alleged intellectual property
+infringement. In order to qualify, an Indemnified Contributor must:
+a) promptly notify the Commercial Contributor in writing of such claim, and
+b) allow the Commercial Contributor to control, and cooperate with the
+Commercial Contributor in, the defense and any related settlement
+negotiations. The Indemnified Contributor may participate in any such claim at
+its own expense.
+
+For example, a Contributor might include the Program in a commercial product
+offering, Product X. That Contributor is then a Commercial Contributor. If
+that Commercial Contributor then makes performance claims, or offers
+warranties related to Product X, those performance claims and warranties are
+such Commercial Contributor's responsibility alone. Under this section, the
+Commercial Contributor would have to defend claims against the other
+Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
+IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
+NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
+Recipient is solely responsible for determining the appropriateness of using
+and distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to the
+risks and costs of program errors, compliance with applicable laws, damage to
+or loss of data, programs or equipment, and unavailability or interruption of
+operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
+CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
+LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
+EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of the
+remainder of the terms of this Agreement, and without further action by the
+parties hereto, such provision shall be reformed to the minimum extent
+necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against any entity (including a
+cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+(excluding combinations of the Program with other software or hardware)
+infringes such Recipient's patent(s), then such Recipient's rights granted
+under Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails to
+comply with any of the material terms or conditions of this Agreement and does
+not cure such failure in a reasonable period of time after becoming aware of
+such noncompliance. If all Recipient's rights under this Agreement terminate,
+Recipient agrees to cease use and distribution of the Program as soon as
+reasonably practicable. However, Recipient's obligations under this Agreement
+and any licenses granted by Recipient relating to the Program shall continue
+and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement, but in
+order to avoid inconsistency the Agreement is copyrighted and may only be
+modified in the following manner. The Agreement Steward reserves the right to
+publish new versions (including revisions) of this Agreement from time to
+time. No one other than the Agreement Steward has the right to modify this
+Agreement. The Eclipse Foundation is the initial Agreement Steward. The
+Eclipse Foundation may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement will
+be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version of the
+Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly
+stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
+licenses to the intellectual property of any Contributor under this Agreement,
+whether expressly, by implication, estoppel or otherwise. All rights in the
+Program not expressly granted under this Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to this
+Agreement will bring a legal action under this Agreement more than one year
+after the cause of action arose. Each party waives its rights to a jury trial in
+any resulting litigation.
+
+==
+
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For JAF API:
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For javax.annotation-api (https://jcp.org/en/jsr/detail?id=250):
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Bean Validation API (http://beanvalidation.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Joda Time (http://www.joda.org/joda-time/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For json-smart-v2 (https://github.com/netplex/json-smart-v2):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Shibboleth (https://shibboleth.net/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Spymemcached (https://github.com/couchbase/spymemcached):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Legion of the Bouncy Castle (http://www.bouncycastle.org/java.html):
+This is licensed under the MIT license:
+
+ Permission is hereby granted, free  of charge, to any person obtaining
+ a  copy  of this  software  and  associated  documentation files  (the
+ "Software"), to  deal in  the Software without  restriction, including
+ without limitation  the rights to  use, copy, modify,  merge, publish,
+ distribute,  sublicense, and/or sell  copies of  the Software,  and to
+ permit persons to whom the Software  is furnished to do so, subject to
+ the following conditions:
+ 
+ The  above  copyright  notice  and  this permission  notice  shall  be
+ included in all copies or substantial portions of the Software.
+ 
+ THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
+ EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
+ MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+==
+
+For The Checker Framework (https://checkerframework.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
+This is licensed under the BSD license:
+
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==
+
+For Woodstox (http://wiki.fasterxml.com/WoodstoxHome):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Cryptacular (https://github.com/vt-middleware/cryptacular):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Modernizer Maven Plugin (https://github.com/gaul/modernizer-maven-plugin):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta JSON Processing (https://projects.eclipse.org/projects/ee4j.jsonp):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
+==
+
+For Java Apereo CAS Client (https://www.apereo.org/cas):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jsoup (https://jsoup.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Ldaptive Java Library (https://www.ldaptive.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Open SAML-Java (https://shibboleth.net/products/opensaml-java.html):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For ASM (http://asm.ow2.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Reactive Streams (https://www.pac4j.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Reactive Streams (http://www.reactive-streams.org/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Simple Logging Facade for Java - SLF4J (http://www.slf4j.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Spring (https://spring.io/projects):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For SnakeYAML (http://www.snakeyaml.org/):
+This is licensed under the AL 2.0, see above.
diff --git a/sra/NOTICE b/sra/NOTICE
index 20545c539f..d1341f1e33 100644
--- a/sra/NOTICE
+++ b/sra/NOTICE
@@ -3,3 +3,192 @@ Copyright 2012-2022 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).
+
+The following copyright notice(s) were affixed to portions of this code
+with which this file is now or was at one time distributed.
+
+==
+
+This product includes software developed by the Jackson project.
+
+==
+
+This product includes software developed by Error Prone.
+
+==
+
+This product includes software developed by the Google Guava project.
+Copyright (c) 2016 The Guava Authors.
+
+==
+
+This product includes software developed by J2ObjC: Java to Objective-C Translator and Runtime.
+
+==
+
+This product includes software developed by Nimbus Content Type
+Copyright 2020, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus Language Tags
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus JOSE-JWT
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by OAuth 2.0 SDK with OpenID Connect extensions
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by the JAXB project.
+Copyright (c) 2013-2016 The JAXB project.
+
+==
+
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by UnboundID LDAP SDK for Java
+Copyright 2007-2022 Ping Identity Corporation
+
+==
+
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by the Metrics project.
+Copyright (c) 2010-2014 Coda Hale, Yammer.com
+
+==
+
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
+
+==
+
+This product includes software developed by the Swagger project.
+Copyright 2016 SmartBear Software
+
+==
+
+This product includes software produced and maintained by Jakarta Annotations
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
+
+==
+
+This product includes software developed by the JAF project
+Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includs software developed by Oracle.
+Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
+Copyright (c) Red Hat, Inc., Emmanuel Bernard
+
+==
+
+This product includes software developed by the Joda Time project.
+Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
+
+==
+
+This product includes software developed by the Legion of the Bouncy Castle.
+Copyright (c) 2000-2016 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
+
+==
+
+This product includes software developed by The Checker Framework.
+Copyright (c) 2004-present by the Checker Framework developers
+
+==
+
+This product includes software developed by the Stax 2 Extension API Project.
+
+==
+
+This product includes software developed by the Woodstox Project.
+
+==
+
+This product includes software developed by Modernizer Maven Plugin
+Copyright 2014-2022 Andrew Gaul <an...@gaul.org>
+
+==
+
+This product includes software produced and maintained by Jakarta JSON Processing
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by Java Apereo CAS Client
+Copyright (c) 2007, JA-SIG, Inc.
+
+==
+
+This product includes software developed by jsoup
+Copyright (c) 2009-2022 Jonathan Hedley
+
+==
+
+This product includes software developed by Ldaptive Java Library
+Copyright (C) 2003-2021 Virginia Tech. All Rights Reserved.
+
+==
+
+This product includes software developed by the Shibboleth project.
+
+==
+
+This product includes software developed by the ASM project.
+Copyright (c) 2000-2011 INRIA, France Telecom
+All rights reserved.
+
+==
+
+This products includes software developed by the Simple Logging Facade for Java (SLF4J) project.
+Copyright (c) 2004-2016 QOS.ch.
+
+==
+
+This product includes software developed by SpringSource.
+Copyright (c) 2004-2022 SpringSource
+All rights reserved.
+
+==
+
+This product includes software developed by the SnakeYAML project.
diff --git a/src/main/asciidoc/reference-guide/concepts/authenticationmodules.adoc b/src/main/asciidoc/reference-guide/concepts/authenticationmodules.adoc
index 951dcc9011..193863553f 100644
--- a/src/main/asciidoc/reference-guide/concepts/authenticationmodules.adoc
+++ b/src/main/asciidoc/reference-guide/concepts/authenticationmodules.adoc
@@ -28,7 +28,6 @@ Several authentication modules are provided:
     ** https://apereo.github.io/cas/6.5.x/authentication/JAAS-Authentication.html[JAAS^]
     ** https://apereo.github.io/cas/6.5.x/authentication/LDAP-Authentication.html[LDAP^]
     ** https://apereo.github.io/cas/6.5.x/integration/Delegate-Authentication.html[OpenID Connect^]
-    ** https://apereo.github.io/cas/6.5.x/mfa/RADIUS-Authentication.html[Radius^]
     ** https://apereo.github.io/cas/6.5.x/authentication/Syncope-Authentication.html[Static^]
     ** https://apereo.github.io/cas/6.5.x/authentication/Syncope-Authentication.html[Syncope^]
     ** https://apereo.github.io/cas/6.5.x/integration/Delegate-Authentication.html[SAML^]
diff --git a/standalone/LICENSE b/standalone/LICENSE
index 77fc5fb72c..88577e88a1 100644
--- a/standalone/LICENSE
+++ b/standalone/LICENSE
@@ -204,7 +204,26 @@
 ==
 
 For Animate.css (http://daneden.github.io/animate.css/):
-This is licensed under the MIT license, see above.
+This is licensed under the MIT license:
+
+ Permission is hereby granted, free  of charge, to any person obtaining
+ a  copy  of this  software  and  associated  documentation files  (the
+ "Software"), to  deal in  the Software without  restriction, including
+ without limitation  the rights to  use, copy, modify,  merge, publish,
+ distribute,  sublicense, and/or sell  copies of  the Software,  and to
+ permit persons to whom the Software  is furnished to do so, subject to
+ the following conditions:
+ 
+ The  above  copyright  notice  and  this permission  notice  shall  be
+ included in all copies or substantial portions of the Software.
+ 
+ THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
+ EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
+ MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 ==
 
@@ -213,6 +232,11 @@ This is Public Domain.
 
 ==
 
+For args4j (http://args4j.kohsuke.org):
+This is licensed under the MIT license, see above.
+
+==
+
 For Bootbox.js (http://bootboxjs.com/):
 This is licensed under the MIT license, see above.
 
@@ -228,11 +252,61 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For cglib (https://github.com/cglib/cglib):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For CodeMirror (http://codemirror.net/):
 This is licensed under the MIT license, see above.
 
 ==
 
+For COSE-JAVA (https://github.com/cose-wg/cose-java):
+This is licensed under the BSD license:
+
+Redistribution and use in source and binary forms, with or without 
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this 
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, 
+this list of conditions and the following disclaimer in the documentation 
+and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors 
+may be used to endorse or promote products derived from this software without 
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==
+
+For Auth0 Java JWT (https://github.com/auth0/java-jwt):
+This is licensed under the MIT license, see above.
+
+==
+
+For JCommander (https://jcommander.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Duo Auth API (https://github.com/duosecurity/duo_client_java):
+This is licensed under the BSD license, see above.
+
+==
+
 For Jackson (http://wiki.fasterxml.com/JacksonHome):
 This is licensed under the AL 2.0, see above.
 
@@ -243,11 +317,236 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Wicket autoconfiguration with Spring Boot (https://github.com/MarcGiffing/wicket-spring-boot):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Caffeine (https://github.com/ben-manes/caffeine):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Open JSON (https://github.com/openjson/openjson):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Operating System and Hardware Information (https://oshi.github.io/oshi/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Numbers (https://github.com/peteroupc/Numbers-Java):
+This is licensed under the CC0 1.0:
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world
+automatically confer exclusive Copyright and Related Rights
+(defined below) upon the creator and subsequent owner(s) (each
+and all, an "owner") of an original work of authorship and/or
+a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights
+to a Work for the purpose of contributing to a commons of
+creative, cultural and scientific works ("Commons") that the
+public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works,
+reuse and redistribute as freely as possible in any form
+whatsoever and for any purposes, including without limitation
+commercial purposes. These owners may contribute to the
+Commons to promote the ideal of a free culture and the further
+production of creative, cultural and scientific works, or to
+gain reputation or greater distribution for their Work in part
+through the use and efforts of others.
+
+For these and/or other purposes and motivations, and
+without any expectation of additional consideration or
+compensation, the person associating CC0 with a Work (the
+"Affirmer"), to the extent that he or she is an owner of
+Copyright and Related Rights in the Work, voluntarily elects
+to apply CC0 to the Work and publicly distribute the Work
+under its terms, with knowledge of his or her Copyright and
+Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights.
+
+A Work made available under CC0 may be protected by
+copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but
+are not limited to, the following:
+
+i. the right to reproduce, adapt, distribute, perform,
+display, communicate, and translate a Work;
+ii. moral rights retained by the original author(s) and/or
+performer(s);
+iii. publicity and privacy rights pertaining to a person's
+image or likeness depicted in a Work;
+iv. rights protecting against unfair competition in regards
+to a Work, subject to the limitations in paragraph 4(a),
+below;
+v. rights protecting the extraction, dissemination, use and
+reuse of data in a Work;
+vi. database rights (such as those arising under Directive
+96/9/EC of the European Parliament and of the Council of 11
+March 1996 on the legal protection of databases, and under
+any national implementation thereof, including any amended
+or successor version of such directive); and<
+vii. >other similar, equivalent or corresponding rights
+throughout the world based on applicable law or treaty, and
+any national implementations thereof.
+
+2. Waiver.
+
+To the greatest extent
+permitted by, but not in contravention of, applicable law,
+Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims
+and causes of action, whether now known or unknown (including
+existing as well as future claims and causes of action), in
+the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "Waiver"). Affirmer
+makes the Waiver for the benefit of each member of the public
+at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be
+subject to revocation, rescission, cancellation, termination,
+or any other legal or equitable action to disrupt the quiet
+enjoyment of the Work by the public as contemplated by
+Affirmer's express Statement of Purpose.
+
+3. Public License Fallback.
+
+Should any
+part of the Waiver for any reason be judged legally invalid or
+ineffective under applicable law, then the Waiver shall be
+preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each
+affected person a royalty-free, non transferable, non
+sublicensable, non exclusive, irrevocable and unconditional
+license to exercise Affirmer's Copyright and Related Rights
+in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty
+(including future time extensions), (iii) in any current or
+future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial,
+advertising or promotional purposes (the "License"). The
+License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or
+ineffective under applicable law, such partial invalidity or
+ineffectiveness shall not invalidate the remainder of the
+License, and in such case Affirmer hereby affirms that he or
+she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any
+associated claims and causes of action with respect to the
+Work, in either case contrary to Affirmer's express Statement
+of Purpose.
+
+4. Limitations and Disclaimers.
+
+i.No trademark or patent rights held by Affirmer are
+waived, abandoned, surrendered, licensed or otherwise
+affected by this document.
+ii. Affirmer offers the Work as-is and makes no
+representations or warranties of any kind concerning the
+Work, express, implied, statutory or otherwise, including
+without limitation warranties of title, merchantability,
+fitness for a particular purpose, non infringement, or the
+absence of latent or other defects, accuracy, or the present
+or absence of errors, whether or not discoverable, all to
+the greatest extent permissible under applicable law.
+iii. Affirmer disclaims responsibility for clearing rights of
+other persons that may apply to the Work or any use thereof,
+including without limitation any person's Copyright and
+Related Rights in the Work. Further, Affirmer disclaims
+responsibility for obtaining any necessary consents,
+permissions or other rights required for any use of the
+Work.
+iv. Affirmer understands and acknowledges that Creative
+Commons is not a party to this document and has no duty or
+obligation with respect to this CC0 or use of the Work.
+
+
+==
+
+For ScribeJava (https://github.com/scribejava/scribejava):
+This is licensed under the MIT license, see above.
+
+==
+
+For JCIP Annotations (https://github.com/stephenc/jcip-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Gson (https://github.com/google/gson):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Elemental2 (https://github.com/google/elemental2):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Error Prone (https://errorprone.info/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Guava (https://github.com/google/guava):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For J2ObjC: Java to Objective-C Translator and Runtime (http://j2objc.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Google Closure Compiler (https://developers.google.com/closure/compiler/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JsInterop Base (https://github.com/google/jsinterop-base):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JsInterop Annotations (https://github.com/google/jsinterop-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Protocol Buffers (https://developers.google.com/protocol-buffers/):
+This is licensed under the BSD license, see above.
+
+==
+
+For RE2/J (https://github.com/google/re2j):
+This is licensed under the BSD license, see above.
+
+==
+
+For ZXing (https://github.com/zxing/zxing):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OWASP Java HTML Sanitizer (https://owasp.org/www-project-java-html-sanitizer/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Wicket - jQuery UI (http://www.7thweb.net/wicket-jquery-ui/):
 This is licensed under the AL 2.0, see above.
 
@@ -462,11 +761,76 @@ any resulting litigation.
 
 ==
 
+For GreenMail (http://www.icegreen.com/greenmail/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For LMAX Disruptor (https://lmax-exchange.github.io/disruptor/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For mchange-commons-java (https://github.com/swaldman/mchange-commons-java):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Microsoft OAuth 2.0 User Agent library for Java (https://github.com/Microsoft/oauth2-useragent):
+This is licensed under the MIT license, see above.
+
+==
+
+For Nimbus Content Type (https://bitbucket.org/connect2id/nimbus-content-type/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus Language Tags (https://bitbucket.org/connect2id/nimbus-language-tags/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Nimbus JOSE-JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OAuth 2.0 SDK with OpenID Connect extensions (https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Moshi (https://square.github.io/moshi/1.x):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OkHttp (https://square.github.io/okhttp/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Okio (https://square.github.io/okio/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Retrofit (https://square.github.io/retrofit/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Retrofit (https://square.github.io/retrofit/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Mail:
+This is licensed under the EPL 1.0, see above.
+
+==
+
 For JAX-B (http://jaxb.java.net/):
 This is licensed under the CDDL 1.0:
 
@@ -853,11 +1217,106 @@ of liability.
 
 ==
 
+For Eclipse Metro (https://projects.eclipse.org/projects/ee4j.metro):
+This is licensed under the EDL 1.0:
+
+Eclipse Distribution License - v 1.0
+
+Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+  disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided with the distribution.
+* Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote
+  products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+==
+
+For QDox (https://github.com/paul-hammant/qdox):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For UnboundID LDAP SDK for Java (https://github.com/pingidentity/ldapsdk):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For CBOR (https://github.com/peteroupc/CBOR-Java):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Semver4j (https://github.com/vdurmont/semver4j):
+This is licensed under the MIT license, see above.
+
+==
+
+For GoogleAuth (https://github.com/wstrange/GoogleAuth):
+This is licensed under the BSD license, see above.
+
+==
+
+For Yubico (https://developers.yubico.com/):
+This is licensed under the BSD license, see above.
+
+==
+
 For HikariCP (http://brettwooldridge.github.io/HikariCP/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Dough Lea's util.concurrent package:
+This is Public Domain.
+
+==
+
+For DataTables (https://datatables.net/):
+This is licensed under the MIT license, see above.
+
+==
+
+For cronn reflection-util (https://github.com/cronn/reflection-util):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Jakarta Activation (https://eclipse-ee4j.github.io/jaf/):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Eclipse Implementation of JAXB (https://projects.eclipse.org/projects/ee4j.jaxb-impl):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For Jakarta XML Web Services https://projects.eclipse.org/projects/ee4j.jaxws):
+This is licensed under the EDL 1.0, see above.
+
+==
+
+For es5-shim (https://github.com/es-shims/es5-shim):
+This is licensed under the MIT license, see above.
+
+==
+
 For Font Awesome (http://fontawesome.io/):
 This is licensed under the MIT license, see above.
 
@@ -868,37 +1327,27 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For highlight.js (http://highlightjs.org/):
-This is licensed under the BSD license:
+For Metrics (http://dropwizard.github.io/metrics/):
+This is licensed under the AL 2.0, see above.
 
-Redistribution and use in source and binary forms, with or without 
-modification, are permitted provided that the following conditions are met:
+==
 
-1. Redistributions of source code must retain the above copyright notice, this 
-list of conditions and the following disclaimer.
+For ClassGraph (https://github.com/classgraph/classgraph):
+This is licensed under the MIT license, see above.
 
-2. Redistributions in binary form must reproduce the above copyright notice, 
-this list of conditions and the following disclaimer in the documentation 
-and/or other materials provided with the distribution.
+==
 
-3. Neither the name of the copyright holder nor the names of its contributors 
-may be used to endorse or promote products derived from this software without 
-specific prior written permission.
+For Micrometer Application Metrics (https://micrometer.io/):
+This is licensed under the AL 2.0, see above.
 
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==
+
+For Netty (https://netty.io/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For Metrics (http://dropwizard.github.io/metrics/):
+For Project Reactor (https://projectreactor.io/):
 This is licensed under the AL 2.0, see above.
 
 ==
@@ -908,6 +1357,11 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Userinfo.io (http://userinfo.io/):
+This is licensed under the MIT license, see above.
+
+==
+
 For Ionicons (http://ionicons.com/):
 This is licensed under the MIT license, see above.
 
@@ -918,31 +1372,51 @@ This is licensed under the MIT license, see above.
 
 ==
 
+For Jakarta Annotations https://projects.eclipse.org/projects/ee4j.ca):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Jakarta Persistence project(https://github.com/eclipse-ee4j/jpa-api):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For Eclipse Project for JAX-RS (https://projects.eclipse.org/projects/ee4j.jaxrs):
+This is licensed under the EPL 1.0, see above.
+
+==
+
 For javax.annotation-api (https://jcp.org/en/jsr/detail?id=250):
 This is licensed under the CDDL 1.0, see above.
 
 ==
 
-For Web Services Metadata for the Java Platform (https://jcp.org/en/jsr/detail?id=181):
+For Expression Language 3.0 API (https://javaee.github.io/uel-ri/):
 This is licensed under the CDDL 1.0, see above.
 
 ==
 
-For Apache Standard Taglib (http://tomcat.apache.org/taglibs/standard/):
+For JSR-330: Dependency Injection for Java (https://code.google.com/archive/p/atinject/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Bean Validation API (http://beanvalidation.org/):
-This is licensed under the AL 2.0, see above.
+For Java(TM) Persistence API (https://github.com/javaee/jpa-spec):
+This is licensed under the EDL 1.0, see above.
 
 ==
 
-For javax.ws.rs-api (https://jax-rs-spec.java.net/):
+For Java Servlet API (https://javaee.github.io/servlet-spec/):
 This is licensed under the CDDL 1.0, see above.
 
 ==
 
+For Bean Validation API (http://beanvalidation.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For SAAJ Standard Implementation (https://saaj.java.net/):
 This is licensed under the CDDL 1.0, see above.
 
@@ -953,6 +1427,11 @@ This is licensed under the CDDL 1.0, see above.
 
 ==
 
+For Jline v2 (http://jline.github.io/jline2/):
+This is licensed under the BSD license, see above.
+
+==
+
 For Joda Time (http://www.joda.org/joda-time/):
 This is licensed under the AL 2.0, see above.
 
@@ -983,27 +1462,22 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Kendo UI (http://www.telerik.com/kendo-ui):
-This is licensed under the AL 2.0, see above.
-
-==
-
-For lodash (https://lodash.com/):
+For Modernizr (https://modernizr.com):
 This is licensed under the MIT license, see above.
 
 ==
 
-For JavaGeom (http://geom-java.sourceforge.net/):
+For Byte Buddy (https://bytebuddy.net/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Modernizr (https://modernizr.com):
-This is licensed under the MIT license, see above.
+For EdDSA-Java (https://github.com/str4d/ed25519-java):
+This is licensed under the CC0 1.0, see above.
 
 ==
 
-For Ehcache (http://ehcache.org/):
+For json-smart-v2 (https://github.com/netplex/json-smart-v2):
 This is licensed under the AL 2.0, see above.
 
 ==
@@ -1018,12 +1492,62 @@ This is licensed under the BSD license, see above.
 
 ==
 
+For Spymemcached (https://github.com/couchbase/spymemcached):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For ConnId (http://connid.tirasa.net/):
 This is licensed under the CDDL 1.0, see above.
 
 ==
 
-For Flowable (http://www.flowable.org/):
+For Groovy Extensions (https://github.com/ultraq/groovy-extensions/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Thymeleaf Expression Processor (https://github.com/ultraq/thymeleaf-expression-processor):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Thymeleaf Layout Dialect (https://github.com/ultraq/thymeleaf-layout-dialect):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OGNL (https://github.com/jkuhnert/ognl/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For OSCache (http://www.opensymphony.com/oscache/):
+This is licensed under the MIT license, see above.
+
+==
+
+For ANTLR (https://www.antlr.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Apereo CAS (https://apereo.github.io/cas/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Inspektr (https://github.com/apereo/inspektr):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Person Directory (https://github.com/apereo/person-directory):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For cas-server-webauthn-helper (https://github.com/mmoayyed/cas-server-webauthn-helper):
 This is licensed under the AL 2.0, see above.
 
 ==
@@ -1033,11 +1557,31 @@ This is licensed under the EPL 1.0, see above.
 
 ==
 
+For attoparser (http://www.attoparser.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jose.4.j (https://bitbucket.org/b_c/jose4j/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Legion of the Bouncy Castle (http://www.bouncycastle.org/java.html):
 This is licensed under the MIT license, see above.
 
 ==
 
+For The Checker Framework (https://checkerframework.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For MojoHaus AnimalSniffer Maven Plugin (https://github.com/mojohaus/animal-sniffer):
+This is licensed under the MIT license, see above.
+
+==
+
 For StAX2 API (http://wiki.fasterxml.com/WoodstoxStax2):
 This is licensed under the BSD license, see above.
 
@@ -1053,6 +1597,41 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For Serializable java.util.function Interfaces (https://github.com/danekja/jdk-serializable-functional):
+This is licensed under the MIT license, see above.
+
+==
+
+For Flowable (http://www.flowable.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Java EE API modules repackaged as OSGi bundles in GlassFish:
+This is licensed under the CDDL 1.0, see above.
+
+==
+
+For Jakarta JSON Processing (https://projects.eclipse.org/projects/ee4j.jsonp):
+This is licensed under the EPL 1.0, see above.
+
+==
+
+For HdrHistogram (https://hdrhistogram.github.io/HdrHistogram/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Hjson Library (https://github.com/hjson/hjson-java):
+This is licensed under the MIT license, see above.
+
+==
+
+For Java Apereo CAS Client (https://www.apereo.org/cas):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For jasypt (http://www.jasypt.org/):
 This is licensed under the AL 2.0, see above.
 
@@ -1063,11 +1642,56 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
+For JDOM (http://www.jdom.org/):
+This is licensed under the BSD license, see above.
+
+==
+
+For Kotlin (https://kotlinlang.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JetBrains Java Annotations (https://github.com/JetBrains/java-annotations):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For jOOL (https://github.com/jOOQ/jOOL):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For JSON in Java (https://github.com/stleary/JSON-java):
+This is licensed under the MIT license, see above.
+
+==
+
+For LatencyUtils (https://latencyutils.github.io/LatencyUtils/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
+For Ldaptive Java Library (https://www.ldaptive.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Liquibase (https://www.liquibase.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For MyBatis (http://www.mybatis.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Objenesis (http://objenesis.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For Open SAML-Java (https://shibboleth.net/products/opensaml-java.html):
 This is licensed under the AL 2.0, see above.
 
@@ -1078,11 +1702,31 @@ This is licensed under the BSD license, see above.
 
 ==
 
+For Reactive Streams (https://www.pac4j.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Passay (https://www.passay.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For Project Lombok (https://projectlombok.org/):
+This is licensed under the MIT license, see above.
+
+==
+
 For Quartz Scheduler (http://quartz-scheduler.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For Reactive Streams (http://www.reactive-streams.org/):
+This is licensed under the CC0 1.0, see above.
+
+==
+
 For Reflections (https://github.com/ronmamo/reflections):
 This is licensed under the BSD license, see above.
 
@@ -1093,28 +1737,28 @@ This is licensed under the MIT license, see above.
 
 ==
 
-For Spring Framework (http://projects.spring.io/spring-framework/):
+For Spring openapi documentation (https://springdoc.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For Spring Security (http://projects.spring.io/spring-security/):
+For Spring (https://spring.io/projects):
 This is licensed under the AL 2.0, see above.
 
 ==
 
-For ThreeTen Backport (http://www.threeten.org/threetenbp/):
-This is licensed under the BSD license, see above.
+For spring-modules-cache:
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For FileSaver.js (http://carlos-algms.github.io/work/html5-saveas-filesaver.js/):
-This is licensed under the MIT license, see above.
+For Thymeleaf (https://www.thymeleaf.org/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
-For Bootstrap File Input (http://plugins.krajee.com/file-input):
-This is licensed under the BSD license, see above.
+For unbescape (https://www.unbescape.org/):
+This is licensed under the AL 2.0, see above.
 
 ==
 
@@ -1123,31 +1767,111 @@ This is licensed under the AL 2.0, see above.
 
 ==
 
-For ng-password-strength (https://github.com/subarroca/ng-password-strength):
+For Moment.js (http://momentjs.com/):
+This is licensed under the MIT license, see above.
+
+==
+
+For zxcvbn (https://github.com/dropbox/zxcvbn):
+This is licensed under the MIT license, see above.
+
+==
+
+For balanced-match (https://github.com/juliangruber/balanced-match):
 This is licensed under the MIT license, see above.
 
 ==
 
-For Select2 (https://select2.github.io/):
+For base64-js (https://github.com/beatgammit/base64-js):
 This is licensed under the MIT license, see above.
 
 ==
 
+For css-vars-ponyfill (https://github.com/jhildenbiddle/css-vars-ponyfill):
+This is licensed under the MIT license, see above.
+
+==
+
+For get-css-data (https://github.com/jhildenbiddle/get-css-data):
+This is licensed under the MIT license, see above.
+
+==
+
+For Inputmask (https://github.com/RobinHerbots/Inputmask):
+This is licensed under the MIT license, see above.
+
+==
+
+For Material Components for the web (https://github.com/material-components/material-components-web):
+This is licensed under the MIT license, see above.
+
+==
+
+For Webfont - Material Design Icons (https://github.com/Templarian/MaterialDesign-Webfont):
+This is licensed under the MIT license, see above.
+
+==
+
+For normalize.css (http://necolas.github.io/normalize.css/):
+This is licensed under the MIT license, see above.
+
+==
+
+For Summernote (https://summernote.org/):
+This is licensed under the MIT license, see above.
+
+==
+
+For text-encoding (https://github.com/inexorabletash/text-encoding):
+This is licensed under the AL 2.0, see above.
+
+==
+
+For tslib (https://github.com/Microsoft/tslib):
+This is licensed under the BSD license, see above.
+
+==
+
+For window.fetch polyfill (https://github.github.io/fetch/):
+This is licensed under the MIT license, see above.
+
+==
+
+For WicketStuff (https://wicketstuff.org/):
+This is licensed under the AL 2.0, see above.
+
+==
+
 For SnakeYAML (http://www.snakeyaml.org/):
 This is licensed under the AL 2.0, see above.
 
 ==
 
+For popper.js (https://github.com/FezVrasta/popper.js):
+This is licensed under the MIT license, see above.
+
+==
+
 For spin.js (http://spin.js.org/):
 This is licensed under the MIT license, see above.
 
 ==
 
+For Tempus Dominus Bootstrap 4 Datetime Picker (https://github.com/tempusdominus/bootstrap-4):
+This is licensed under the MIT license, see above.
+
+==
+
 For typeahead.js (http://twitter.github.io/typeahead.js/):
 This is licensed under the MIT license, see above.
 
 ==
 
+For Webjars-locator core functionality (https://github.com/webjars/webjars-locator-core):
+This is licensed under the MIT license, see above.
+
+==
+
 For Wicket-Bootstrap (http://wb.agilecoders.de/):
 This is licensed under the AL 2.0, see above.
 
@@ -1367,100 +2091,3 @@ intellectual property laws of the United States of America. No party to this
 Agreement will bring a legal action under this Agreement more than one year
 after the cause of action arose. Each party waives its rights to a jury trial in
 any resulting litigation.
-
-==
-
-For X-editable (http://vitalets.github.io/x-editable/):
-This is licensed under the MIT license, see above.
-
-==
-
-For Source Sans Pro (https://github.com/adobe-fonts/source-sans-pro):
-This is lincesed under the SIL Open Font License, Version 1.1:
-
------------------------------------------------------------
-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
------------------------------------------------------------
-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded, 
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting -- in part or in whole -- any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/standalone/NOTICE b/standalone/NOTICE
index 87adf84cf2..0f649083d8 100644
--- a/standalone/NOTICE
+++ b/standalone/NOTICE
@@ -18,6 +18,11 @@ This product includes software developed by the AOP Alliance (Java/J2EE AOP stan
 
 ==
 
+This product includes software developed by the args4j project.
+Copyright (c) 2013 Kohsuke Kawaguchi and other contributors
+
+==
+
 This product includes software developed by the Bootbox.js project.
 Copyright (C) 2011-2015 by Nick Payne nick@kurai.co.uk
 
@@ -38,6 +43,21 @@ Copyright (C) 2016
 
 ==
 
+This product includes software developed by COSE-JAVA
+Copyright (c) 2016, All rights reserved.
+
+==
+
+This product includes software developed by Auth0 Java JWT
+Copyright (c) 2015 Auth0, Inc. <su...@auth0.com> (http://auth0.com)
+
+==
+
+This product includes software developed by Duo Auth API
+Copyright (c) 2012, Duo Security, Inc.
+
+==
+
 This product includes software developed by the Jackson project.
 
 ==
@@ -46,32 +66,230 @@ This product includes software developed by the Java Uuid Generator (JUG) projec
 
 ==
 
+This product includes software developed by the Caffeine project.
+Copyright (c) 2021 Ben Manes. All Rights Reserved.
+
+==
+
+This product includes software developed by the Open JSON project.
+
+==
+
+This product includes software developed by Operating System and Hardware Information
+Copyright (c) 2016-2022 The OSHI Project Contributors
+
+==
+
+This product includes software developed by ScribeJava
+Copyright (c) 2010 Pablo Fernandez
+
+==
+
+This product includes software developed by the Gson project.
+Copyright (c) 2008 Google Inc.
+
+==
+
+This product includes software developed by Elemental2
+Copyright 2018 Google Inc.
+
+==
+
+This product includes software developed by Error Prone.
+
+==
+
 This product includes software developed by the Google Guava project.
 Copyright (c) 2016 The Guava Authors.
 
 ==
 
+This product includes software developed by J2ObjC: Java to Objective-C Translator and Runtime.
+
+==
+
+This product includes software developed by The Closure Compiler.
+Copyright (c) 2009 The Closure Compiler Authors.
+
+==
+
+This product includes software developed by JsInterop Base
+Copyright 2017 Google Inc.
+
+==
+
+This product includes software developed by JsInterop Annotations.
+Copyright (c) 2019 Google Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Protocol Buffers
+Copyright 2008 Google Inc. All rights reserved.
+
+==
+
+This product includes software developed by RE2/J
+Copyright (c) 2009 The Go Authors. All rights reserved.
+
+==
+
+This product includes software developed by ZXing
+Copyright: 2007-2020, ZXing authors
+
+==
+
+This product includes software developed by OWASP Java HTML Sanitizer.
+Copyright (c) 2011, Mike Samuel
+All rights reserved.
+
+==
+
 This product includes software developed by the Wicket - jQuery UI project.
 Copyright 2012-2013 Sebastien Briquet
 
 ==
 
+This product includes software developed by the GreenMail project.
+Copyright (c) 2006 - 2019, Wael Chatila and GreenMail project contributors
+
+==
+
+This product includes software developed by mchange-commons-java
+Copyright (C) 2015 Machinery For Change, Inc.
+
+==
+
+This product includes software developed by Microsoft OAuth 2.0 User Agent library for Java
+Copyright (c) Microsoft Corporation
+
+==
+
+This product includes software developed by Nimbus Content Type
+Copyright 2020, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus Language Tags
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Nimbus JOSE-JWT
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by OAuth 2.0 SDK with OpenID Connect extensions
+Copyright 2012-2022, Connect2id Ltd
+
+==
+
+This product includes software developed by Moshi
+Copyright (C) 2020 Square, Inc.
+
+==
+
+This product includes software developed by OkHttp
+Copyright (c) 2022 Square, Inc.
+
+==
+
+This product includes software developed by Okio
+Copyright 2013 Square, Inc.
+
+==
+
+This product includes software developed by Retrofit
+Copyright 2014 Square, Inc.
+
+==
+
+This product includes software developed by Retrofit
+Copyright 2014 Square, Inc.
+
+==
+
+This product includes software developed by Jakarta Mail
+Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
+
+==
+
 This product includes software developed by the JAXB project.
 Copyright (c) 2013-2016 The JAXB project.
 
 ==
 
+This product includes software produced and maintained by Eclipse Metro
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by QDox.
+Copyright 2002-2009 Joe Walnes and QDox Project Team
+
+==
+
+This product includes software developed by UnboundID LDAP SDK for Java
+Copyright 2007-2022 Ping Identity Corporation
+
+==
+
+This product includes software developed by Semver4j
+Copyright (c) 2015-present Vincent DURMONT <vd...@gmail.com>
+
+==
+
+This product includes software developed by GoogleAuth
+Copyright (c) 2013 Warren Strange
+Copyright (c) 2014-2017 Enrico M. Crisostomo
+
+==
+
+This product includes software developed by Yubico
+Copyright (c) 2014-2018, Yubico AB
+
+==
+
 This product includes software developed by the HikariCP project.
 
 ==
 
-This product includes software developed by the google-diff-match-patch project.
-Copyright (c) 2006 Google Inc.
+This product includes software developed by Dough Lea
+
+==
+
+This product includes software developed by DataTables
+Copyright (c) 2008-present, SpryMedia Limited
+
+==
+
+This product includes software developed by de.cronn:reflection-util
+Copyright © 2015-2021 the original authors.
+
+==
+
+This product includes software produced and maintained by Jakarta Activation project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software produced and maintained by Jakarta Eclipse Implementation of JAXB
+All content is the property of the respective authors or their employers.
 
 ==
 
-This product includes the Javascript syntax highlighter.
-Copyright (c) 2006, Ivan Sagalaev
+This product includes software produced and maintained by Jakarta XML Web Services
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by es5-shim
+Copyright (C) 2009-2016 Kristopher Michael Kowal and contributors
+
+==
+
+This product includes software developed by the google-diff-match-patch project.
+Copyright (c) 2006 Google Inc.
 
 ==
 
@@ -80,11 +298,31 @@ Copyright (c) 2010-2014 Coda Hale, Yammer.com
 
 ==
 
+This product includes software developed by the ClassGraph project.
+Copyright (c) 2020 Luke Hutchison
+
+==
+
+This product includes software developed by Micrometer Application Metrics
+Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
+
+==
+
+This product includes software developed by Netty
+Copyright 2014 The Netty Project
+
+==
+
 This product includes software developed by the Swagger project.
 Copyright 2016 SmartBear Software
 
 ==
 
+This product includes software developed by Userinfo.io
+Copyright (c) 2014 Vincent DURMONT <vd...@gmail.com>
+
+==
+
 This product includes software developed by the Ionicons project.
 Copyright (c) 2016 Drifty (http://drifty.com/)
 
@@ -95,23 +333,44 @@ Copyright (c) 2011 Piotr Rochala (http://rocha.la)
 
 ==
 
+This product includes software developed by Apereo CAS
+Copyright 2022, The Apereo Foundation
+
+==
+
+This product includes software produced and maintained by Jakarta Persistence project
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by the Eclipse Project for JAX-RS.
+Eclipse Project for JAX-RS is a trademark of the Eclipse Foundation.
+All content is the property of the respective authors or their employers. For more information regarding authorship of content, please consult the listed source code repository logs.
+
+==
+
 This product includs software developed by Oracle.
 Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
 
 ==
 
-This product includes software developed by the Java Community Process (https://jcp.org/en/jsr/detail?id=181).
- Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
+This product includes software developed by Expression Language 3.0 API
+Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
 
 ==
 
-This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
-Copyright (c) Red Hat, Inc., Emmanuel Bernard
+This product includes software developed by Java(TM) Persistence API
+Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
 
 ==
 
-This product includes software developed by the JAX-RS project.
-Copyright (c) 2014, Oracle Corporation and/or its affiliates. All rights reserved.
+This product includes software developed by Java Servlet API
+Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software developed by the Bean Validation Project (http://beanvalidation.org).
+Copyright (c) Red Hat, Inc., Emmanuel Bernard
 
 ==
 
@@ -125,6 +384,12 @@ This product includes software developed by the JAX-WS project.
 
 ==
 
+This product includes software developed by the Jline v2 project.
+Copyright (c) 2002-2016, the original author or authors.
+All rights reserved.
+
+==
+
 This product includes software developed by the Joda Time project.
 Copyright (c) 2002-2016 Joda.org. All Rights Reserved.
 
@@ -155,18 +420,8 @@ Copyright (c) 2010 - 2014 jsPlumb, http://jsplumbtoolkit.com/
 
 ==
 
-This product includes software developed by the Kendo UI project.
-Copyright (c) 2014-2015 Telerik]
-
-==
-
-This product includes software developed by the lodash project.
-Copyright jQuery Foundation and other contributors <https://jquery.org/>]
-
-==
-
-This product includes software developed by Terracotta. Inc.
-Ehcache source code and documentation are Copyright (c) Terracotta, Inc.
+This product includes software developed by Byte Buddy
+Copyright 2014 - Present Rafael Winterhalter
 
 ==
 
@@ -182,7 +437,28 @@ Copyright 2011-2016 Tirasa S.r.l. All rights reserved.
 
 ==
 
-This product includes software developed by the Flowable project.
+This product includes software developed by Groovy Extensions
+Copyright 2022, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by Thymeleaf Expression Processor
+Copyright 2016, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by Thymeleaf Layout Dialect
+Copyright 2019, Emanuel Rabina (http://www.ultraq.net.nz/)
+
+==
+
+This product includes software developed by OGNL
+Copyright (c) 2004, Drew Davidson and Luke Blanshard
+
+==
+
+This product includes software developed by the ANTLR project.
+Copyright (c) 2012 Terence Parr and Sam Harwell. All rights reserved.
 
 ==
 
@@ -191,11 +467,31 @@ Software Foundation.
 
 ==
 
+This product includes software developed by attoparser
+Copyright (c) 2012-2014, The ATTOPARSER team (http://www.attoparser.org)
+
+==
+
+This product includes software developed by jose.4.j
+Copyright 2012-2015 Brian Campbell
+
+==
+
 This product includes software developed by the Legion of the Bouncy Castle.
 Copyright (c) 2000-2016 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
 
 ==
 
+This product includes software developed by The Checker Framework.
+Copyright (c) 2004-present by the Checker Framework developers
+
+==
+
+This product includes software developed by MojoHaus AnimalSniffer Maven Plugin
+Copyright (c) 2009, codehaus.org
+
+==
+
 This product includes software developed by the Stax 2 Extension API Project.
 
 ==
@@ -204,6 +500,36 @@ This product includes software developed by the Woodstox Project.
 
 ==
 
+This product includes software developed by Serializable java.util.function Interfaces.
+Copyright (c) 2015 Jakub Danek
+
+==
+
+This product includes software developed by the Flowable project.
+
+==
+
+This product includes software developed by Java EE API modules repackaged as OSGi bundles in GlassFish
+Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
+
+==
+
+This product includes software produced and maintained by Jakarta JSON Processing
+All content is the property of the respective authors or their employers.
+
+==
+
+This product includes software developed by Hjson Library
+Copyright (c) 2013, 2014 EclipseSource
+Copyright (c) 2015-2016 Christian Zangl
+
+==
+
+This product includes software developed by Java Apereo CAS Client
+Copyright (c) 2007, JA-SIG, Inc.
+
+==
+
 This project includes software developed by the Jasypt project.
 Copyright (c) 2014 The JASYPT team. All Rights Reserved
 
@@ -214,10 +540,45 @@ Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
 
 ==
 
+This product includes software developed by the JDOM project.
+ Copyright (C) 2000-2012 Jason Hunter & Brett McLaughlin.
+ All rights reserved.
+
+==
+
+This product includes software developed by JetBrains Java Annotations
+Copyright 2000-2021 JetBrains s.r.o.
+
+==
+
+This product includes software developed by jOOL
+Copyright (c), Data Geekery GmbH, contact@datageekery.com
+
+==
+
+This product includes software developed by JSON in Java
+Copyright (c) 2002 JSON.org
+
+==
+
+This product includes software developed by Ldaptive Java Library
+Copyright (C) 2003-2021 Virginia Tech. All Rights Reserved.
+
+==
+
+This product includes software developed by the Liquibase project.
+
+==
+
 This product includes software developed by the MyBatis project.
 
 ==
 
+This product includes software developed by Objenesis
+Copyright 2006-2022 the original author or authors.
+
+==
+
 This product includes software developed by the Shibboleth project.
 
 ==
@@ -228,6 +589,16 @@ All rights reserved.
 
 ==
 
+This product includes software developed by Passay
+Copyright (C) 2003-2022 Virginia Tech. All rights reserved.
+
+==
+
+This product includes software developed by Project Lombok
+Copyright (C) 2009-2021 The Project Lombok Authors.
+
+==
+
 This product includes software developed by Terracotta. Inc.
 Quartz Scheduler source code and documentation are Copyright (c) Terracotta, Inc.
 
@@ -242,24 +613,24 @@ Copyright (c) 2004-2016 QOS.ch.
 
 ==
 
-This product includes software developed by SpringSource.
-Copyright (c) 2004-2016 SpringSource
-All rights reserved.
+This product includes software developed by Spring openapi documentation
+Copyright 2019-2020 the original author or authors.
 
 ==
 
-This product includes software developed by the spin.js project.
-Copyright (c) 2011-2015 Felix Gnass [fgnass at gmail dot com]
+This product includes software developed by SpringSource.
+Copyright (c) 2004-2022 SpringSource
+All rights reserved.
 
 ==
 
-This product includes software developed by the FileSaver.js project.
-Copyright (c) 2015 Carlos A. Gomes.
+This product includes software developed by Thymeleaf
+Copyright (c) 2011-2018, The THYMELEAF team (http://www.thymeleaf.org)
 
 ==
 
-This product includes software developed by the Bootstrap File Input project.
-Copyright (c) 2014 - 2016, Kartik Visweswaran Krajee.com All rights reserved.
+This product includes software developed by unbescape
+Copyright 2012 Twitter, Inc.
 
 ==
 
@@ -268,15 +639,68 @@ Copyright (c) 2018 Chart.js Contributors
 
 ==
 
-This product contains unmodified binary redistributions for H2 database engine,
-which is dual licensed and available under a modified version of the MPL 1.1 (Mozilla Public License) or under the
-(unmodified) EPL 1.0 (Eclipse Public License).
-An original copy of the license agreement can be found at: http://www.h2database.com/html/license.html
+This product includes software developed by Moment.js.
+Copyright (c) JS Foundation and other contributors
+
+==
+
+This product includes software developed by zxcvbn
+Copyright (c) 2012-2016 Dan Wheeler and Dropbox, Inc.
+
+==
+
+This product includes software developed by balanced-match
+Copyright (c) 2013 Julian Gruber <ju...@juliangruber.com>
 
 ==
 
-This product includes software developed by the Select2 project.
-Copyright (c) 2012-2015 Kevin Brown, Igor Vaynberg, and Select2 contributors
+This product includes software developed by base64-js
+Copyright (c) 2014 Jameson Little
+
+==
+
+This product includes software developed by css-vars-ponyfill
+Copyright (c) 2018 John Hildenbiddle
+
+==
+
+This product includes software developed by get-css-data
+Copyright (c) 2018 John Hildenbiddle
+
+==
+
+This product includes software developed by Inputmask
+Copyright (c) 2010 - 2018 Robin Herbots
+
+==
+
+This product includes software developed by Material Components for the web
+Copyright 2018 Google Inc.
+
+==
+
+This product includes software developed by normalize.css
+Copyright © Nicolas Gallagher and Jonathan Neal
+
+==
+
+This product includes software developed by Summernote
+Copyright (c) 2015~ Summernote Team (https://github.com/orgs/summernote/people)
+
+==
+
+This product includes software developed by tslib
+Copyright (c) Microsoft Corporation.
+
+==
+
+This product includes software developed by window.fetch polyfill
+Copyright (c) 2014-2016 GitHub, Inc.
+
+==
+
+This product includes software developed by WicketStuff
+Copyright (c) 1998-2004, Drew Davidson and Luke Blanshard
 
 ==
 
@@ -284,16 +708,21 @@ This product includes software developed by the SnakeYAML project.
 
 ==
 
-This product includes software developed by the Web Services Description Language for Java project.
-Copyright (c) Dice.
-All Rights Reserved.
+This product includes software developed by popper.js
+Copyright (c) 2021 Floating UI contributors
 
 ==
 
-This product includes software developed by the X-editable project.
-Copyright (c) 2012 Vitaliy Potapov
+This product includes software developed by Tempus Dominus Bootstrap 4 Datetime Picker
+Copyright (c) 2016 Tempus Dominus
 
 ==
 
-This product includes software developed by Adobe Systems Incorporated (http://www.adobe.com/).
-Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
+This product includes software developed by Webjars-locator core functionality
+Copyright (c) 2013 James Ward
+
+==
+
+This product includes software developed by the Web Services Description Language for Java project.
+Copyright (c) Dice.
+All Rights Reserved.
diff --git a/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java b/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
index 6761907182..a43e960a02 100644
--- a/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
+++ b/wa/bootstrap/src/main/java/org/apache/syncope/wa/bootstrap/SyncopeWAPropertySourceLocator.java
@@ -34,7 +34,6 @@ import org.apache.syncope.common.lib.auth.JDBCAuthModuleConf;
 import org.apache.syncope.common.lib.auth.JaasAuthModuleConf;
 import org.apache.syncope.common.lib.auth.LDAPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.OIDCAuthModuleConf;
-import org.apache.syncope.common.lib.auth.RadiusAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SAML2IdPAuthModuleConf;
 import org.apache.syncope.common.lib.auth.StaticAuthModuleConf;
 import org.apache.syncope.common.lib.auth.SyncopeAuthModuleConf;
@@ -58,7 +57,6 @@ import org.apereo.cas.configuration.model.support.pac4j.Pac4jDelegatedAuthentica
 import org.apereo.cas.configuration.model.support.pac4j.oidc.Pac4jGenericOidcClientProperties;
 import org.apereo.cas.configuration.model.support.pac4j.oidc.Pac4jOidcClientProperties;
 import org.apereo.cas.configuration.model.support.pac4j.saml.Pac4jSamlClientProperties;
-import org.apereo.cas.configuration.model.support.radius.RadiusProperties;
 import org.apereo.cas.configuration.model.support.syncope.SyncopeAuthenticationProperties;
 import org.apereo.cas.util.model.TriStateBoolean;
 import org.slf4j.Logger;
@@ -359,42 +357,6 @@ public class SyncopeWAPropertySourceLocator implements PropertySourceLocator {
         return filterCasProperties(casProperties, filterProvider);
     }
 
-    private static Map<String, Object> mapAuthModule(
-            final String authModule,
-            final RadiusAuthModuleConf conf) {
-
-        RadiusProperties props = new RadiusProperties();
-        props.setName(authModule);
-
-        props.getClient().setAccountingPort(conf.getAccountingPort());
-        props.getClient().setAuthenticationPort(conf.getAuthenticationPort());
-        props.getClient().setInetAddress(conf.getInetAddress());
-        props.getClient().setSharedSecret(conf.getSharedSecret());
-        props.getClient().setSocketTimeout(conf.getSocketTimeout());
-
-        props.getServer().setNasIdentifier(conf.getNasIdentifier());
-        props.getServer().setNasIpAddress(conf.getNasIpAddress());
-        props.getServer().setNasIpv6Address(conf.getNasIpv6Address());
-        props.getServer().setNasPort(conf.getNasPort());
-        props.getServer().setNasPortId(conf.getNasPortId());
-        props.getServer().setNasPortType(conf.getNasPortType());
-        props.getServer().setNasRealPort(conf.getNasRealPort());
-        props.getServer().setProtocol(conf.getProtocol());
-        props.getServer().setRetries(conf.getRetries());
-
-        CasConfigurationProperties casProperties = new CasConfigurationProperties();
-        casProperties.getAuthn().setRadius(props);
-
-        SimpleFilterProvider filterProvider = getParentCasFilterProvider();
-        filterProvider.addFilter(
-                AuthenticationProperties.class.getSimpleName(),
-                SimpleBeanPropertyFilter.filterOutAllExcept(
-                        CasCoreConfigurationUtils.getPropertyName(
-                                AuthenticationProperties.class,
-                                AuthenticationProperties::getRadius)));
-        return filterCasProperties(casProperties, filterProvider);
-    }
-
     private static Map<String, Object> mapAuthModule(
             final String authModule,
             final SAML2IdPAuthModuleConf conf) {
@@ -474,8 +436,6 @@ public class SyncopeWAPropertySourceLocator implements PropertySourceLocator {
                 properties.putAll(mapAuthModule(authModuleTO.getKey(), (JDBCAuthModuleConf) authConf));
             } else if (authConf instanceof OIDCAuthModuleConf) {
                 properties.putAll(mapAuthModule(authModuleTO.getKey(), (OIDCAuthModuleConf) authConf));
-            } else if (authConf instanceof RadiusAuthModuleConf) {
-                properties.putAll(mapAuthModule(authModuleTO.getKey(), (RadiusAuthModuleConf) authConf));
             } else if (authConf instanceof SAML2IdPAuthModuleConf) {
                 properties.putAll(mapAuthModule(authModuleTO.getKey(), (SAML2IdPAuthModuleConf) authConf));
             } else if (authConf instanceof U2FAuthModuleConf) {
diff --git a/wa/starter/pom.xml b/wa/starter/pom.xml
index 9b687af2cb..d30e8a2c9a 100644
--- a/wa/starter/pom.xml
+++ b/wa/starter/pom.xml
@@ -162,18 +162,6 @@ under the License.
       <groupId>org.apereo.cas</groupId>
       <artifactId>cas-server-support-themes</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.apereo.cas</groupId>
-      <artifactId>cas-server-support-radius-core</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apereo.cas</groupId>
-      <artifactId>cas-server-support-radius</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apereo.cas</groupId>
-      <artifactId>cas-server-support-radius-mfa</artifactId>
-    </dependency>
     <dependency>
       <groupId>org.apereo.cas</groupId>
       <artifactId>cas-server-support-saml-idp</artifactId>