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

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluo.git


The following commit(s) were added to refs/heads/main by this push:
     new a9d829d6 Bump org.apache.commons:commons-configuration2 from 2.8.0 to 
2.10.1 (#1133)
a9d829d6 is described below

commit a9d829d6615599ee298480f225a0d39d00a8d318
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Mar 25 20:33:30 2025 -0400

    Bump org.apache.commons:commons-configuration2 from 2.8.0 to 2.10.1 (#1133)
    
    * Bump org.apache.commons:commons-configuration2 from 2.8.0 to 2.10.1
    
    Bumps org.apache.commons:commons-configuration2 from 2.8.0 to 2.10.1.
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-configuration2
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Resolve commons-lang3 version conflict
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Christopher Tubbs <[email protected]>
---
 .../src/test/java/org/apache/fluo/command/FluoProgramTest.java     | 5 +++--
 pom.xml                                                            | 7 ++++++-
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git 
a/modules/command/src/test/java/org/apache/fluo/command/FluoProgramTest.java 
b/modules/command/src/test/java/org/apache/fluo/command/FluoProgramTest.java
index 8fbbf9a0..cc92cfbf 100644
--- a/modules/command/src/test/java/org/apache/fluo/command/FluoProgramTest.java
+++ b/modules/command/src/test/java/org/apache/fluo/command/FluoProgramTest.java
@@ -26,7 +26,8 @@ import org.junit.Before;
 import org.junit.BeforeClass;
 import org.junit.Test;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
 
 public class FluoProgramTest {
   @Parameters(commandNames = "test")
@@ -64,7 +65,7 @@ public class FluoProgramTest {
     outPS = System.out;
     errPS = System.err;
     // This will hide usage and error logs when running tests
-    try (PrintStream ps = new 
PrintStream(NullOutputStream.NULL_OUTPUT_STREAM)) {
+    try (PrintStream ps = new PrintStream(NullOutputStream.INSTANCE)) {
       System.setOut(ps);
       System.setErr(ps);
     }
diff --git a/pom.xml b/pom.xml
index 4537e828..4bb300cb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -154,7 +154,12 @@
       <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-configuration2</artifactId>
-        <version>2.8.0</version>
+        <version>2.10.1</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-lang3</artifactId>
+        <version>3.14.0</version>
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>

Reply via email to