Bas Dijkstra
10/18/2025, 7:31 AM4.0.0-beta.15 does not play nice with JUnit 6 yet, is that because of this one still being open? https://github.com/wiremock/wiremock/pull/3174.
If I change to JUnit 5.13.4 everything works fine. If that PR is supposed to fix this I'll be patient 🙂Tom
10/21/2025, 9:15 AMBas Dijkstra
10/21/2025, 10:34 AMTom
11/17/2025, 11:46 AMBas Dijkstra
11/17/2025, 4:19 PMTom
11/17/2025, 5:11 PMTom
11/17/2025, 9:16 PMpom.xml looks like now:
<project xmlns="<http://maven.apache.org/POM/4.0.0>" xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
xsi:schemaLocation="<http://maven.apache.org/POM/4.0.0> <http://maven.apache.org/xsd/maven-4.0.0.xsd>">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ontestautomation.workshops.wiremock</groupId>
<artifactId>wiremock-workshop</artifactId>
<version>1.0.0</version>
<description>Project containing examples, exercises and answers for my open source WireMock workshop</description>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<wiremock.version>4.0.0-beta.15</wiremock.version>
<junit.version>6.0.1</junit.version>
<restassured.version>5.5.6</restassured.version>
<slf4j.version>2.0.17</slf4j.version>
<maven.surefire.plugin.version>3.5.4</maven.surefire.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${restassured.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
</plugins>
</build>
</project>Bas Dijkstra
11/18/2025, 11:33 AMTom
11/18/2025, 11:34 AMBas Dijkstra
11/18/2025, 11:35 AMBas Dijkstra
11/18/2025, 5:03 PM