This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
commit 7834870b72bcebbe959c21ecba94dee5cd2e088f Author: Martin Desruisseaux <martin.desruisse...@geomatys.com> AuthorDate: Sat Jul 8 15:59:38 2023 +0200 Upgrade dependency from JUnit 4 to JUnit 5 vintage. The tests themselves are not yet modified. --- pom.xml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1e635727b1..bf6a19e518 100644 --- a/pom.xml +++ b/pom.xml @@ -524,8 +524,13 @@ =========================================================== --> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> </dependencies>