You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by lm...@apache.org on 2016/07/14 21:11:41 UTC

knox git commit: KNOX-722 - Null Pointer Exception while Knox SSO configured for OKTA/SAML v2

Repository: knox
Updated Branches:
  refs/heads/v0.9.1 7c2ce7847 -> 6842849e3


KNOX-722 - Null Pointer Exception while Knox SSO configured for OKTA/SAML v2

Project: http://git-wip-us.apache.org/repos/asf/knox/repo
Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/6842849e
Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/6842849e
Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/6842849e

Branch: refs/heads/v0.9.1
Commit: 6842849e3264a45eb2abf6b8b2ce1149ae8f7b81
Parents: 7c2ce78
Author: Larry McCay <lm...@hortonworks.com>
Authored: Thu Jul 14 17:11:05 2016 -0400
Committer: Larry McCay <lm...@hortonworks.com>
Committed: Thu Jul 14 17:11:05 2016 -0400

----------------------------------------------------------------------
 gateway-provider-security-pac4j/pom.xml | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/knox/blob/6842849e/gateway-provider-security-pac4j/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-pac4j/pom.xml b/gateway-provider-security-pac4j/pom.xml
index b1c0147..47a5f02 100644
--- a/gateway-provider-security-pac4j/pom.xml
+++ b/gateway-provider-security-pac4j/pom.xml
@@ -36,8 +36,8 @@
     </licenses>
 
     <properties>
-        <j2e-pac4j.version>1.2.1</j2e-pac4j.version>
-        <pac4j.version>1.8.5</pac4j.version>
+        <j2e-pac4j.version>1.2.2</j2e-pac4j.version>
+        <pac4j.version>1.8.9</pac4j.version>
     </properties>
 
     <dependencies>
@@ -51,6 +51,12 @@
             <groupId>org.pac4j</groupId>
             <artifactId>j2e-pac4j</artifactId>
             <version>${j2e-pac4j.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.pac4j</groupId>
+                    <artifactId>pac4j-core</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
@@ -61,6 +67,12 @@
 
         <dependency>
             <groupId>org.pac4j</groupId>
+            <artifactId>pac4j-core</artifactId>
+            <version>${pac4j.version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.pac4j</groupId>
             <artifactId>pac4j-config</artifactId>
             <version>${pac4j.version}</version>
             <exclusions>