This is an automated email from the ASF dual-hosted git repository.
andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git
The following commit(s) were added to refs/heads/main by this push:
new 1b0586f398 GH-2593: Fix JUnit dependency leaking to compile scope
1b0586f398 is described below
commit 1b0586f39848a2443afacb16aee00b8b3d813bc1
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>