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

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new 27d9b8bb50 Fixed build issues with hadoop-gremlin CTR
27d9b8bb50 is described below

commit 27d9b8bb50bc272802f69d0b7601bec30b404388
Author: Stephen Mallette <[email protected]>
AuthorDate: Wed Feb 18 18:18:15 2026 -0500

    Fixed build issues with hadoop-gremlin CTR
---
 hadoop-gremlin/pom.xml                                        | 11 +++++++++++
 .../process/computer/util/ComputerSubmissionHelper.java       |  3 +--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/hadoop-gremlin/pom.xml b/hadoop-gremlin/pom.xml
index d02691dfdf..b9c7fa5a92 100644
--- a/hadoop-gremlin/pom.xml
+++ b/hadoop-gremlin/pom.xml
@@ -181,7 +181,17 @@ limitations under the License.
             <artifactId>jackson-databind</artifactId>
             <version>2.13.5</version>
         </dependency>
+        <dependency>
+            <groupId>com.google.inject</groupId>
+            <artifactId>guice</artifactId>
+            <scope>test</scope>
+        </dependency>
         <!-- TEST -->
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.tinkerpop</groupId>
             <artifactId>gremlin-test</artifactId>
@@ -197,6 +207,7 @@ limitations under the License.
         <dependency>
             <groupId>com.google.inject</groupId>
             <artifactId>guice</artifactId>
+            <scope>test</scope>
         </dependency>
     </dependencies>
     <build>
diff --git 
a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java
 
b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java
index e010beebd8..e07d93a180 100644
--- 
a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java
+++ 
b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/process/computer/util/ComputerSubmissionHelper.java
@@ -26,8 +26,7 @@ import java.util.concurrent.ForkJoinPool;
 import java.util.concurrent.Future;
 import java.util.concurrent.ThreadFactory;
 import java.util.function.Supplier;
-
-import com.google.common.base.Function;
+import java.util.function.Function;
 
 import org.apache.tinkerpop.gremlin.process.computer.ComputerResult;
 

Reply via email to