2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-oidc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-persistentcookie/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-push/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam-authentication</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-qr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-radius/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-recaptcha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-saml2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam-authentication</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-scripted/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-securid/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/openam-auth-webauthn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<properties>
<webauthn4j.version>0.9.5.RELEASE</webauthn4j.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-authentication</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
import javax.servlet.http.HttpServletRequest;

import org.forgerock.openam.utils.CrestQuery;
import org.forgerock.openam.utils.StringUtils;
import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
import org.ietf.jgss.GSSException;
Expand Down Expand Up @@ -438,7 +439,9 @@ private byte[] getSPNEGOTokenFromCallback(Callback[] callbacks) {
String spnegoTokenStr =
((HttpCallback)callbacks[0]).getAuthorization();
try {
spnegoToken = Base64.decode(spnegoTokenStr);
if(StringUtils.isNotBlank(spnegoTokenStr)) {
spnegoToken = Base64.decode(spnegoTokenStr);
}
} catch (Exception e) {
debug.error("Decoding token error.");
if (debug.messageEnabled()) {
Expand Down
2 changes: 1 addition & 1 deletion openam-authentication/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-cassandra/openam-cassandra-cts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-cassandra</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-cassandra-cts</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-cassandra/openam-cassandra-datastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-cassandra</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-cassandra-datastore</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-cassandra/openam-cassandra-embedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-cassandra</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-cassandra-embedded</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM Cassandra</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-certs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-cli/openam-cli-definitions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-cli</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-cli/openam-cli-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-cli</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-clientsdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-common-auth-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-core-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM Core REST</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-coretoken/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-dashboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-datastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-datastore</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-distribution/openam-distribution-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-distribution</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-distribution</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-distribution/openam-distribution-kit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-distribution</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-distribution</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-distribution</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-documentation/openam-doc-log-message-ref/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-documentation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM Log Message Reference</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-documentation/openam-doc-ssoadm-ref/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-documentation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM ssoadm Reference</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Documentation Module -->
Expand Down
2 changes: 1 addition & 1 deletion openam-entitlements/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-examples/openam-example-api-descriptor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam-examples</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-examples/openam-example-clientsdk-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-examples</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-examples/openam-example-clientsdk-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-examples</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-federation/OpenFM/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-federation/openam-federation-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-federation/openam-fedlet-unconfigured-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam-federation</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-federation/openam-idpdiscovery-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-federation/openam-idpdiscovery/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-federation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
6 changes: 3 additions & 3 deletions openam-http-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM HTTP client</name>
Expand All @@ -46,8 +46,8 @@
<scm>
<url>https://github.com/OpenIdentityPlatform/OpenAM</url>
<connection>scm:git:https://github.com/OpenIdentityPlatform/OpenAM.git</connection>
<developerConnection>scm:git:ssh://git@github.com:OpenIdentityPlatform/OpenAM.git</developerConnection>
<tag>14.6.5</tag>
<developerConnection>scm:git:https://github.com/OpenIdentityPlatform/OpenAM.git</developerConnection>
<tag>14.6.6</tag>
</scm>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion openam-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM HTTP</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-i18n/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-ldap-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-ldap-utils</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-notifications-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-notifications-websocket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-notifications/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-oauth2-saml2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-oauth2-saml2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-oauth2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-plugins/openam-auth-postauthentication/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-plugins</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-push-notification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion openam-radius/openam-radius-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-radius</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<description>OpenAM Radius common library. Used by the openam-radius-server and openam-auth-radius modules</description>
Expand Down
2 changes: 1 addition & 1 deletion openam-radius/openam-radius-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-radius</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<artifactId>openam-radius-server</artifactId>
<name>OpenAM RADIUS Server</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-radius/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-restlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-dtd-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-idsvcs-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-jaxrpc-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-liberty-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-mib-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-saml2-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-wsfederation-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/openam-xacml3-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-schema</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-scripting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<repositories>
<repository>
Expand Down
2 changes: 1 addition & 1 deletion openam-selfservice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-server-auth-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-server-only/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-slf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-slf4j</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-client-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<artifactId>openam-client-sts</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-common-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM STS Common</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-publish-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM STS Publish Service</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-rest-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM REST STS</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-soap-sts/openam-soap-sts-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-soap-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM SOAP STS Client</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-soap-sts/openam-soap-sts-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-soap-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM SOAP STS Server</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-soap-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<artifactId>openam-soap-sts</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/openam-token-service-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-sts</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM STS Token Service</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-sts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<artifactId>openam-sts</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion openam-test-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-time-travel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-tokens/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openam-tools/build-helper-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>
<groupId>org.openidentityplatform.maven.plugins</groupId>
<artifactId>build-helper-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-configurator-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-installer-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-installtools-launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-installtools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-license-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>openam-tools</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-license-manager-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-license-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>openam-tools</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM ServletContext License Locator</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/openam-upgrade-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-tools</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<!-- Component Definition -->
Expand Down
2 changes: 1 addition & 1 deletion openam-ui/openam-ui-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-ui</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-ui-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openam-ui/openam-ui-ria/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-ui</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-ui-ria</artifactId>
Expand Down
20 changes: 19 additions & 1 deletion openam-ui/openam-ui-ria/src/main/assembly/dir.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,24 @@
<format>dir</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/codemirror5-${codemirror.version}.0</directory>
<outputDirectory>/libs/codemirror</outputDirectory>
<includes>
<include>lib/codemirror.js</include>
<include>mode/javascript/javascript.js</include>
<include>mode/groovy/groovy.js</include>
<include>addon/display/fullscreen.js</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/codemirror5-${codemirror.version}.0</directory>
<outputDirectory>/css/codemirror</outputDirectory>
<includes>
<include>lib/codemirror.css</include>
<include>addon/display/fullscreen.css</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/CodeMirror-${codemirror.version}.0</directory>
<outputDirectory>/libs/codemirror</outputDirectory>
Expand Down Expand Up @@ -60,7 +78,7 @@
<include>addon/display/fullscreen.css</include>
</includes>
</fileSet>

</fileSets>
<dependencySets>
<dependencySet>
Expand Down
4 changes: 2 additions & 2 deletions openam-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<artifactId>openam-ui</artifactId>
Expand Down Expand Up @@ -524,7 +524,7 @@
<artifactId>CodeMirror</artifactId>
<version>4.10</version>
<packaging>zip</packaging>
<downloadUrl>https://github.com/codemirror/{artifactId}/archive/{version}.0.{packaging}</downloadUrl>
<downloadUrl>https://github.com/codemirror/{artifactId}5/archive/{version}.0.{packaging}</downloadUrl>
</artifactItem>
<artifactItem>
<groupId>org.openidentityplatform.commons.ui.libs</groupId>
Expand Down
2 changes: 1 addition & 1 deletion openam-uma/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM UMA</name>
Expand Down
2 changes: 1 addition & 1 deletion openam-upgrade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>14.6.5</version>
<version>14.6.6</version>
</parent>

<name>OpenAM Upgrade</name>
Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<name>OpenAM Project</name>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.5</version>
<version>14.6.6</version>
<packaging>pom</packaging>
<description>OpenAM</description>
<inceptionYear>2010</inceptionYear>
Expand Down Expand Up @@ -92,6 +92,7 @@
<commons-fileupload.version>1.4</commons-fileupload.version>
<commons-io.version>2.8.0</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-text.version>1.9</commons-text.version>
<commons-logging.version>1.1.3</commons-logging.version>
<commons-logging-api.version>1.1</commons-logging-api.version>
<!-- <esapiport.version>2013-12-04</esapiport.version> -->
Expand Down Expand Up @@ -315,6 +316,7 @@
--add-opens java.base/java.util.concurrent=ALL-UNNAMED
--add-opens java.base/java.util.concurrent.atomic=ALL-UNNAMED
--add-opens java.base/java.nio=ALL-UNNAMED
--add-opens java.logging/java.util.logging=ALL-UNNAMED

--add-exports java.base/jdk.internal.ref=ALL-UNNAMED
--add-exports java.base/jdk.internal.misc=ALL-UNNAMED
Expand Down Expand Up @@ -527,7 +529,7 @@
<connection>scm:git:https://github.com/OpenIdentityPlatform/OpenAM.git</connection>
<developerConnection>scm:git:https://github.com/OpenIdentityPlatform/OpenAM.git</developerConnection>
<url>https://github.com/OpenIdentityPlatform/OpenAM</url>
<tag>14.6.5</tag>
<tag>14.6.6</tag>
</scm>
<!-- Dependency Management -->
<dependencyManagement>
Expand Down Expand Up @@ -1207,6 +1209,12 @@
<artifactId>commons-logging-api</artifactId>
<version>${commons-logging-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>

<!-- Mozilla Rhino Javascript engine -->
<dependency>
<groupId>org.mozilla</groupId>
Expand Down