Skip to content

Commit

Permalink
Update dependency versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed Dec 16, 2022
1 parent 7706c6d commit 2c5b555
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 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.3</htsjdk.version>
<hadoop.version>3.3.4</hadoop.version>
<mockito.version>4.9.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.0</spark.version>
<jackson.core.version>2.13.3</jackson.core.version>
<spark.version>3.3.1</spark.version>
<jackson.core.version>2.14.0</jackson.core.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -126,7 +126,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 @@ -151,6 +151,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 @@ -227,7 +233,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 @@ -308,9 +314,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 @@ -325,7 +332,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 2c5b555

Please sign in to comment.