Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Committing with `git commit -s` will add the sign-off at the end of the commit m

- Jannik Hollenbach <[email protected]>
- Johannes Zahn <[email protected]>
- Robert Seedorff <Robert.Seedorff@iteratec.com>
- Robert Seedorff <robert.seedorff@iteratec.com>
- Simon Hülkenberg <[email protected]>
- Sven Strittmatter <[email protected]>
- Timo Pagel <[email protected]>
- Heiko Kiesel <[email protected]>
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@
<sonar.jacoco.reportPaths>${project.build.directory}/jacoco.exec</sonar.jacoco.reportPaths>

<!-- Dependency versions: -->
<com.fasterxml.jackson.version>2.15.2</com.fasterxml.jackson.version>
<com.fasterxml.jackson.version>2.16.1</com.fasterxml.jackson.version>
<org.springframework.version>5.3.28</org.springframework.version>
<org.mockito.version>5.4.0</org.mockito.version>
<org.mockito.version>5.9.0</org.mockito.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.0</version>
<version>5.10.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -124,7 +124,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -161,13 +161,13 @@
<dependency>
<groupId>uk.org.webcompere</groupId>
<artifactId>system-stubs-jupiter</artifactId>
<version>2.0.2</version>
<version>2.1.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.15.1</version>
<version>3.15.6</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -219,7 +219,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<configuration>
<source>${project.build.version.source}</source>
<target>${project.build.version.target}</target>
Expand All @@ -246,7 +246,7 @@

<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce</id>
Expand Down Expand Up @@ -284,7 +284,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.11</version>
<executions>
<execution>
<id>pre-unit-test</id>
Expand All @@ -310,7 +310,7 @@

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.5</version>
</plugin>

<plugin>
Expand All @@ -327,7 +327,7 @@

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down