This is an automated email from the ASF dual-hosted git repository. afs pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit a7a95565cd5b4d9162f8ca9d0c5be3faef8af021 Author: Andy Seaborne <[email protected]> AuthorDate: Thu May 21 08:32:53 2026 +0100 Add dependency JUnit Jupiter to core --- jena-core/pom.xml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/jena-core/pom.xml b/jena-core/pom.xml index e596f7c307..3cddb97965 100644 --- a/jena-core/pom.xml +++ b/jena-core/pom.xml @@ -63,13 +63,6 @@ <artifactId>RoaringBitmap</artifactId> </dependency> - <dependency> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> - <scope>test</scope> - </dependency> - - <!-- <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> @@ -81,7 +74,12 @@ <artifactId>junit-platform-suite</artifactId> <scope>test</scope> </dependency> - --> + + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.slf4j</groupId>
