Skip to content
Snippets Groups Projects
Commit 8b1edba2 authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files

Update versions

parent a3c8f5bd
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jupiter.version>5.8.1</jupiter.version>
<jackson.version>2.12.5</jackson.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -18,19 +20,19 @@ ...@@ -18,19 +20,19 @@
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>5.7.1</version> <version>${jupiter.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>5.7.1</version> <version>${jupiter.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId> <artifactId>junit-jupiter-params</artifactId>
<version>5.7.1</version> <version>${jupiter.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
...@@ -38,7 +40,7 @@ ...@@ -38,7 +40,7 @@
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>3.9.0</version> <version>3.12.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
...@@ -46,13 +48,13 @@ ...@@ -46,13 +48,13 @@
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId> <artifactId>jackson-core</artifactId>
<version>2.12.2</version> <version>${jackson.version}</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
<version>2.12.2</version> <version>${jackson.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
...@@ -88,7 +90,7 @@ ...@@ -88,7 +90,7 @@
<dependency> <dependency>
<groupId>com.puppycrawl.tools</groupId> <groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId> <artifactId>checkstyle</artifactId>
<version>8.41.1</version> <version>9.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
<configuration> <configuration>
...@@ -112,7 +114,7 @@ ...@@ -112,7 +114,7 @@
<plugin> <plugin>
<groupId>com.github.spotbugs</groupId> <groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId> <artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.2</version> <version>4.4.1</version>
<configuration> <configuration>
<xmlOutput>false</xmlOutput> <xmlOutput>false</xmlOutput>
<htmlOutput>true</htmlOutput> <htmlOutput>true</htmlOutput>
...@@ -131,7 +133,7 @@ ...@@ -131,7 +133,7 @@
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version> <version>0.8.7</version>
<executions> <executions>
<execution> <execution>
<id>jacoco-prepare-agent</id> <id>jacoco-prepare-agent</id>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment