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

martin_s pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/archiva-redback-components-expression-evaluator.git


The following commit(s) were added to refs/heads/master by this push:
     new 6162c6f  Removing plexus dependency
6162c6f is described below

commit 6162c6f02e38dc7279530c2798b3db179cbfc271
Author: Martin Stockhammer <[email protected]>
AuthorDate: Sun Oct 6 21:33:22 2019 +0200

    Removing plexus dependency
---
 pom.xml                                                             | 6 ++++--
 .../redback/components/evaluator/DefaultExpressionEvaluator.java    | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index ffc4f76..08aeeed 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,11 +45,13 @@
     <url>${scmBrowseUrl}</url>
   </scm>
 
+
   <dependencies>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-utils</artifactId>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
     </dependency>
+
   </dependencies>
 
 </project>
diff --git 
a/src/main/java/org/apache/archiva/redback/components/evaluator/DefaultExpressionEvaluator.java
 
b/src/main/java/org/apache/archiva/redback/components/evaluator/DefaultExpressionEvaluator.java
index ba52fda..6fd389b 100644
--- 
a/src/main/java/org/apache/archiva/redback/components/evaluator/DefaultExpressionEvaluator.java
+++ 
b/src/main/java/org/apache/archiva/redback/components/evaluator/DefaultExpressionEvaluator.java
@@ -19,7 +19,7 @@ package org.apache.archiva.redback.components.evaluator;
  * under the License.
  */
 
-import org.codehaus.plexus.util.StringUtils;
+import org.apache.commons.lang3.StringUtils;
 
 import java.util.ArrayList;
 import java.util.Iterator;

Reply via email to