Skip to content

Commit 2d8188e

Browse files
committed
Update dependencies
1 parent 7bffa7f commit 2d8188e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<version>1.0-SNAPSHOT</version>
1010

1111
<properties>
12-
<kotlin.version>1.9.24</kotlin.version>
12+
<kotlin.version>2.2.21</kotlin.version>
1313
<maven.compiler>17</maven.compiler>
14-
<specmatic.version>2.27.3</specmatic.version>
15-
<spring.boot.version>3.5.6</spring.boot.version>
14+
<specmatic.version>2.28.1</specmatic.version>
15+
<spring.boot.version>3.5.7</spring.boot.version>
1616
</properties>
1717

1818
<repositories>
@@ -30,14 +30,14 @@
3030
<version>${kotlin.version}</version>
3131
</dependency>
3232
<dependency>
33-
<groupId>com.fasterxml.jackson.core</groupId>
33+
<groupId>tools.jackson.core</groupId>
3434
<artifactId>jackson-core</artifactId>
35-
<version>2.20.0</version>
35+
<version>3.0.1</version>
3636
</dependency>
3737
<dependency>
38-
<groupId>com.fasterxml.jackson.core</groupId>
38+
<groupId>tools.jackson.core</groupId>
3939
<artifactId>jackson-databind</artifactId>
40-
<version>2.20.0</version>
40+
<version>3.0.1</version>
4141
</dependency>
4242

4343
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter -->
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.junit.jupiter</groupId>
9292
<artifactId>junit-jupiter</artifactId>
93-
<version>5.14.1</version>
93+
<version>6.0.1</version>
9494
<scope>test</scope>
9595
</dependency>
9696

@@ -104,14 +104,14 @@
104104
<dependency>
105105
<groupId>org.junit.platform</groupId>
106106
<artifactId>junit-platform-launcher</artifactId>
107-
<version>1.14.1</version>
107+
<version>6.0.1</version>
108108
<scope>test</scope>
109109
</dependency>
110110

111111
<dependency>
112112
<groupId>org.springdoc</groupId>
113113
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
114-
<version>2.8.13</version>
114+
<version>2.8.14</version>
115115
</dependency>
116116

117117
<dependency>

src/test/java/com/store/ContractTestUsingTestContainerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@EnabledIf(value = "isNonCIOrLinux", disabledReason = "Run only on Linux in CI; all platforms allowed locally")
1818
public class ContractTestUsingTestContainerTest {
1919

20-
private static final String APPLICATION_HOST = "localhost";
20+
private static final String APPLICATION_HOST = "host.docker.internal";
2121
private static final int APPLICATION_PORT = 8090;
2222
private static final String EXCLUDED_ENDPOINTS = "'/internal/metrics'";
2323

@@ -32,7 +32,7 @@ public static boolean isNonCIOrLinux() {
3232
.withFileSystemBind("./specmatic.yaml", "/usr/src/app/specmatic.yaml", BindMode.READ_ONLY)
3333
.withFileSystemBind("./build/reports/specmatic", "/usr/src/app/build/reports/specmatic", BindMode.READ_WRITE)
3434
.waitingFor(Wait.forLogMessage(".*Tests run:.*", 1))
35-
.withNetworkMode("host")
35+
.withExtraHost("host.docker.internal", "host-gateway")
3636
.withLogConsumer((OutputFrame output) -> System.out.print(output.getUtf8String()));
3737

3838
@BeforeAll

0 commit comments

Comments
 (0)