This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opennlp.git
The following commit(s) were added to refs/heads/main by this push:
new 1fb064d9 Fix Eval Build for OpenNLP 3.x
1fb064d9 is described below
commit 1fb064d940f170dba4d94c90969e357d33343c46
Author: Richard Zowalla <[email protected]>
AuthorDate: Wed Jun 25 10:56:09 2025 +0200
Fix Eval Build for OpenNLP 3.x
---
opennlp-api/pom.xml | 12 ++++++++++++
opennlp-core/opennlp-ml/opennlp-dl-gpu/pom.xml | 6 ++++++
2 files changed, 18 insertions(+)
diff --git a/opennlp-api/pom.xml b/opennlp-api/pom.xml
index ae9a91a7..b89ee4cb 100644
--- a/opennlp-api/pom.xml
+++ b/opennlp-api/pom.xml
@@ -39,6 +39,18 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
\ No newline at end of file
diff --git a/opennlp-core/opennlp-ml/opennlp-dl-gpu/pom.xml
b/opennlp-core/opennlp-ml/opennlp-dl-gpu/pom.xml
index f5965f23..15f1b31a 100644
--- a/opennlp-core/opennlp-ml/opennlp-dl-gpu/pom.xml
+++ b/opennlp-core/opennlp-ml/opennlp-dl-gpu/pom.xml
@@ -60,6 +60,12 @@
</dependency>
<!-- TEST scope -->
+ <dependency>
+ <groupId>org.apache.opennlp</groupId>
+ <artifactId>opennlp-runtime</artifactId>
+ <scope>test</scope>
+ </dependency>
+
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>