Skip to content

Commit

Permalink
update dependencies for JUnit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
brokkoli71 committed May 27, 2024
1 parent fbd190a commit 9e3a240
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,31 @@
<aws.version>1.12.477</aws.version>
<netcdfJavaVersion>5.5.3</netcdfJavaVersion>
<zstdVersion>1.5.5-5</zstdVersion>
<junit-jupiter-params.version>5.10.2</junit-jupiter-params.version>
<junit-jupiter-version>5.10.2</junit-jupiter-version>
</properties>

<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params -->
<!-- JUnit 5 dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-params.version}</version>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>

<!-- Other dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
Expand Down Expand Up @@ -62,6 +76,7 @@
<artifactId>okhttp</artifactId>
<version>2.7.5</version>
</dependency>
<!-- JUnit 4 dependency for backward compatibility if needed -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -79,6 +94,15 @@
</repositories>

<build>
<testSourceDirectory>src/test/java/dev/zarr/zarrjava</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 9e3a240

Please sign in to comment.