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
commit d6bce3d4e279f9e31b0badafcc4b515d421c8ef8 Author: Andy Seaborne <[email protected]> AuthorDate: Sun Apr 6 15:17:58 2025 +0100 Fix: scope=test for JUnit in jena-langtag --- jena-db/pom.xml | 13 +++++++++++++ jena-langtag/pom.xml | 1 + 2 files changed, 14 insertions(+) diff --git a/jena-db/pom.xml b/jena-db/pom.xml index 63840617c2..a4ffa67ef1 100644 --- a/jena-db/pom.xml +++ b/jena-db/pom.xml @@ -49,6 +49,19 @@ </modules> <dependencies> + + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-suite-engine</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-params</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> diff --git a/jena-langtag/pom.xml b/jena-langtag/pom.xml index 4016701806..b7c6d721aa 100644 --- a/jena-langtag/pom.xml +++ b/jena-langtag/pom.xml @@ -53,6 +53,7 @@ <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> + <scope>test</scope> </dependency> <!--
