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

rombert pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-auth-form.git


The following commit(s) were added to refs/heads/master by this push:
     new 708270a  SLING-8014 - Switch auth form to use commons lang 3
708270a is described below

commit 708270a88ec33372d276435a03279a9f43edb3d7
Author: Robert Munteanu <[email protected]>
AuthorDate: Mon Oct 15 17:49:37 2018 +0300

    SLING-8014 - Switch auth form to use commons lang 3
---
 pom.xml                                                       | 6 +++---
 src/main/java/org/apache/sling/auth/form/impl/TokenStore.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index d139a51..1838c3d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -147,9 +147,9 @@
                        <scope>provided</scope>
                </dependency>
                <dependency>
-                       <groupId>commons-lang</groupId>
-                       <artifactId>commons-lang</artifactId>
-                       <version>2.4</version>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-lang3</artifactId>
+                       <version>3.0</version>
                        <scope>provided</scope>
                </dependency>
 
diff --git a/src/main/java/org/apache/sling/auth/form/impl/TokenStore.java 
b/src/main/java/org/apache/sling/auth/form/impl/TokenStore.java
index 7d8b1fc..b97ac15 100644
--- a/src/main/java/org/apache/sling/auth/form/impl/TokenStore.java
+++ b/src/main/java/org/apache/sling/auth/form/impl/TokenStore.java
@@ -32,7 +32,7 @@ import javax.crypto.Mac;
 import javax.crypto.SecretKey;
 import javax.crypto.spec.SecretKeySpec;
 
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 

Reply via email to