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

rvesse pushed a commit to branch GH-2593
in repository https://gitbox.apache.org/repos/asf/jena.git

commit edd46c6ec62ea52f4ad5337a6fdd30f1ff6a24d8
Author: Rob Vesse <[email protected]>
AuthorDate: Fri Jul 19 11:46:45 2024 +0100

    GH-2593: Fix JUnit dependency leaking to compile scope
    
    Explicitly declares the dependency as test scope to avoid it leaking
    into compile scope unneccesarily
---
 jena-arq/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/jena-arq/pom.xml b/jena-arq/pom.xml
index 7c4489bb60..d6a86179a8 100644
--- a/jena-arq/pom.xml
+++ b/jena-arq/pom.xml
@@ -130,6 +130,7 @@
     <dependency>
       <groupId>org.junit.platform</groupId>
       <artifactId>junit-platform-suite-engine</artifactId>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

Reply via email to