Skip to content

Commit a29df37

Browse files
renovate[bot]jannebe
authored andcommitted
Update all dependencies
1 parent 78d3c17 commit a29df37

File tree

4 files changed

+18
-22
lines changed

4 files changed

+18
-22
lines changed

pom.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.6</version>
8+
<version>4.0.1</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>fi.hsl.jore</groupId>
@@ -20,28 +20,28 @@
2020
<maven-enforcer.plugin.mvn-min-version>3.6.3</maven-enforcer.plugin.mvn-min-version>
2121

2222
<!-- Library versions -->
23-
<guava.version>33.1.0-jre</guava.version>
24-
<immutables.version>2.11.6</immutables.version>
25-
<geotools.version>31.1</geotools.version>
26-
<geojson-jackson.version>1.14</geojson-jackson.version>
23+
<guava.version>33.5.0-jre</guava.version>
24+
<immutables.version>2.12.0</immutables.version>
25+
<geotools.version>34.1</geotools.version>
26+
<geojson-jackson.version>3.0</geojson-jackson.version>
2727
<!-- Sticking to old 9.X version to avoid having to configure trusted certificates
2828
or just blindly trust any SQL server certificate. -->
29-
<mssql-jdbc.version>9.5.0.jre17-preview</mssql-jdbc.version>
29+
<mssql-jdbc.version>10.2.4.jre11</mssql-jdbc.version>
3030
<!-- Used as the DB for Spring Batch -->
31-
<hsqldb.version>2.7.3</hsqldb.version>
31+
<hsqldb.version>2.7.4</hsqldb.version>
3232

3333
<!-- Test library version -->
3434
<quicktheories.version>0.26</quicktheories.version>
35-
<wiremock.version>3.6.0</wiremock.version>
36-
<assertj-db.version>2.0.2</assertj-db.version>
37-
<jsonassert.version>1.5.1</jsonassert.version>
35+
<wiremock.version>3.13.2</wiremock.version>
36+
<assertj-db.version>3.0.1</assertj-db.version>
37+
<jsonassert.version>1.5.3</jsonassert.version>
3838

3939
<!-- Maven plugins -->
40-
<maven-compiler.plugin.version>3.13.0</maven-compiler.plugin.version>
40+
<maven-compiler.plugin.version>3.14.1</maven-compiler.plugin.version>
4141
<maven-properties.plugin.version>1.2.1</maven-properties.plugin.version>
42-
<maven-enforcer.plugin.version>3.5.0</maven-enforcer.plugin.version>
43-
<maven-build-helper.plugin.version>3.6.0</maven-build-helper.plugin.version>
44-
<maven-spotless.plugin.version>3.0.0</maven-spotless.plugin.version>
42+
<maven-enforcer.plugin.version>3.6.2</maven-enforcer.plugin.version>
43+
<maven-build-helper.plugin.version>3.6.1</maven-build-helper.plugin.version>
44+
<maven-spotless.plugin.version>3.1.0</maven-spotless.plugin.version>
4545

4646
<!-- Packaging -->
4747
<build.profile.id>dev</build.profile.id>

src/test/java/fi/hsl/jore/importer/feature/batch/route/MapMatchingProcessorTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ void shouldReturnNull() throws Exception {
9090
@DisplayName("When one route point is found")
9191
@ExtendWith(SoftAssertionsExtension.class)
9292
class WhenOneRoutePointIsFound {
93-
private static final String MAP_MATCHING_RESPONSE =
94-
"""
93+
private static final String MAP_MATCHING_RESPONSE = """
9594
{
9695
"code": "Ok",
9796
"routes": [

src/test/java/fi/hsl/jore/importer/feature/jore4/repository/ScheduledStopPointTestLocation.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ public class ScheduledStopPointTestLocation {
88

99
public static final String SQL_ALIAS_X_COORDINATE = "x";
1010
public static final String SQL_ALIAS_Y_COORDINATE = "y";
11-
public static final String SQL_QUERY_GET_MEASURED_LOCATION =
12-
"""
11+
public static final String SQL_QUERY_GET_MEASURED_LOCATION = """
1312
SELECT ST_X(measured_location::geometry) AS x,
1413
ST_Y(measured_location::geometry) AS y
1514
FROM service_pattern.scheduled_stop_point

src/test/java/fi/hsl/jore/importer/feature/mapmatching/service/MapMatchingServiceTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ void shouldThrowException() {
9090
@Nested
9191
@DisplayName("When the map matching API returns the HTTP status code ok (200)")
9292
class WhenMapMatchingApiReturnsHttpStatusCodeOk {
93-
private static final String EXPECTED_MAP_MATCHING_REQUEST_BODY =
94-
"""
93+
private static final String EXPECTED_MAP_MATCHING_REQUEST_BODY = """
9594
{
9695
"routeId": "1001-2-20211004",
9796
"routeGeometry": {
@@ -203,8 +202,7 @@ void shouldThrowException() {
203202
@DisplayName("When a match was found")
204203
@ExtendWith(SoftAssertionsExtension.class)
205204
class WhenMatchWasFound {
206-
private static final String MAP_MATCHING_RESPONSE =
207-
"""
205+
private static final String MAP_MATCHING_RESPONSE = """
208206
{
209207
"code": "Ok",
210208
"routes": [

0 commit comments

Comments
 (0)