Skip to content

Commit

Permalink
Update dependency versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed Aug 22, 2023
1 parent fa068a6 commit 0631626
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
<java.version>1.8</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<htsjdk.version>3.0.1</htsjdk.version>
<hadoop.version>3.2.1</hadoop.version>
<mockito.version>3.7.7</mockito.version>
<htsjdk.version>3.0.5</htsjdk.version>
<hadoop.version>3.3.6</hadoop.version>
<mockito.version>5.5.0</mockito.version>
<kryo-serializers.version>0.45</kryo-serializers.version>
<slf4j.version>1.7.30</slf4j.version>
<scala.version>2.12</scala.version>
<spark.version>3.3.3</spark.version>
<jackson.core.version>2.13.3</jackson.core.version>
<jackson.core.version>2.15.2</jackson.core.version>
<argLine>
--add-exports java.base/sun.nio.ch=ALL-UNNAMED
--add-opens java.base/java.nio=ALL-UNNAMED
Expand Down Expand Up @@ -133,7 +133,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -158,6 +158,12 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>4.0.56.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
Expand Down Expand Up @@ -234,7 +240,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.0</version>
<executions>
<execution>
<id>add-source</id>
Expand Down Expand Up @@ -315,9 +321,10 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.0</version>
<version>4.7.3.0</version>
<configuration>
<excludeFilterFile>src/build/conf/spotbugs-exclude.xml</excludeFilterFile>
<failOnError>false</failOnError>
<onlyAnalyze>org.disq_bio.disq.-</onlyAnalyze>
<xmlOutput>true</xmlOutput>
</configuration>
Expand All @@ -332,7 +339,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M4</version><!-- 3.0.0-M5 fails integration tests, see https://github.com/disq-bio/disq/issues/150 -->
<version>3.0.0-M7</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 0631626

Please sign in to comment.