|
7 | 7 | <description>Project containing examples, exercises and answers for my open source WireMock workshop</description> |
8 | 8 | <properties> |
9 | 9 | <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> |
12 | 12 | <restassured.version>5.5.6</restassured.version> |
13 | 13 | <slf4j.version>2.0.17</slf4j.version> |
| 14 | + <maven.compiler.plugin.version>3.14.1</maven.compiler.plugin.version> |
14 | 15 | <maven.surefire.plugin.version>3.5.4</maven.surefire.plugin.version> |
15 | 16 | </properties> |
16 | 17 | <dependencies> |
|
32 | 33 | <version>${junit.version}</version> |
33 | 34 | <scope>test</scope> |
34 | 35 | </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> |
35 | 48 | <dependency> |
36 | 49 | <groupId>io.rest-assured</groupId> |
37 | 50 | <artifactId>rest-assured</artifactId> |
|
47 | 60 | </dependencies> |
48 | 61 | <build> |
49 | 62 | <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> |
50 | 71 | <plugin> |
51 | 72 | <groupId>org.apache.maven.plugins</groupId> |
52 | 73 | <artifactId>maven-surefire-plugin</artifactId> |
|
0 commit comments