Skip to content

Commit 0aa31f9

Browse files
committed
Bump all dependencies to latest versions
1 parent 4a4d83a commit 0aa31f9

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

pom.xml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
<description>Project containing examples, exercises and answers for my open source WireMock workshop</description>
88
<properties>
99
<maven.compiler.release>17</maven.compiler.release>
10-
<wiremock.version>4.0.0-beta.15</wiremock.version>
11-
<junit.version>5.13.4</junit.version>
10+
<wiremock.version>4.0.0-beta.17</wiremock.version>
11+
<junit.version>6.0.1</junit.version>
1212
<restassured.version>5.5.6</restassured.version>
1313
<slf4j.version>2.0.17</slf4j.version>
14+
<maven.compiler.plugin.version>3.14.1</maven.compiler.plugin.version>
1415
<maven.surefire.plugin.version>3.5.4</maven.surefire.plugin.version>
1516
</properties>
1617
<dependencies>
@@ -32,6 +33,18 @@
3233
<version>${junit.version}</version>
3334
<scope>test</scope>
3435
</dependency>
36+
<dependency>
37+
<groupId>org.junit.platform</groupId>
38+
<artifactId>junit-platform-launcher</artifactId>
39+
<version>${junit.version}</version>
40+
<scope>test</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.junit.platform</groupId>
44+
<artifactId>junit-platform-commons</artifactId>
45+
<version>${junit.version}</version>
46+
<scope>test</scope>
47+
</dependency>
3548
<dependency>
3649
<groupId>io.rest-assured</groupId>
3750
<artifactId>rest-assured</artifactId>
@@ -47,6 +60,14 @@
4760
</dependencies>
4861
<build>
4962
<plugins>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-compiler-plugin</artifactId>
66+
<version>${maven.compiler.plugin.version}</version>
67+
<configuration>
68+
<release>${maven.compiler.release}</release>
69+
</configuration>
70+
</plugin>
5071
<plugin>
5172
<groupId>org.apache.maven.plugins</groupId>
5273
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)