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

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4693829  GEODE-6120 - Fix missing commons-lang
4693829 is described below

commit 469382985e21edc53a0d8040e25d1de5ba75ea97
Author: Alexander Murmann <amurm...@pivotal.io>
AuthorDate: Fri Nov 30 14:00:46 2018 -0800

    GEODE-6120 - Fix missing commons-lang
    
    The examples repo has been making use of the apache.commons-lang package
    provided by the main Geode repo. In version 3 of commons-lang the
    package was renamed to "commons-lang3". Since Geode updated its
    dependency to that version we need to use the same package name in our
    examples.
---
 .../src/main/java/org/apache/geode_examples/clientSecurity/Example.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/clientSecurity/src/main/java/org/apache/geode_examples/clientSecurity/Example.java
 
b/clientSecurity/src/main/java/org/apache/geode_examples/clientSecurity/Example.java
index f6762af..4f59f9e 100644
--- 
a/clientSecurity/src/main/java/org/apache/geode_examples/clientSecurity/Example.java
+++ 
b/clientSecurity/src/main/java/org/apache/geode_examples/clientSecurity/Example.java
@@ -16,7 +16,7 @@ package org.apache.geode_examples.clientSecurity;
 
 import java.util.Properties;
 
-import org.apache.commons.lang.Validate;
+import org.apache.commons.lang3.Validate;
 import org.apache.logging.log4j.Logger;
 
 import org.apache.geode.cache.Region;

Reply via email to