@@ -62,7 +62,7 @@ In gradle it would look like this:
6262
6363``` groovy
6464dependencies {
65- testCompile('com.epages:restdocs-wiremock:0.8.9 ')
65+ testCompile('com.epages:restdocs-wiremock:1.0.0 ')
6666 testCompile('org.springframework.restdocs:spring-restdocs-mockmvc')
6767}
6868```
@@ -73,7 +73,7 @@ When using maven:
7373<dependency >
7474 <groupId >com.epages</groupId >
7575 <artifactId >restdocs-wiremock</artifactId >
76- <version >0.8.9 </version >
76+ <version >1.0.0 </version >
7777 <scope >test</scope >
7878</dependency >
7979<dependency >
@@ -241,7 +241,7 @@ On the client side, add a dependency to the test-runtime to the jar containing t
241241that, the JSON files can be accessed as classpath resources.
242242
243243```groovy
244- testRuntime (group: ' com.epages' , name: ' restdocs-server' , version: ' 0.8.9 ' , classifier: ' wiremock' , ext: ' jar' )
244+ testRuntime (group: ' com.epages' , name: ' restdocs-server' , version: ' 1.0.0 ' , classifier: ' wiremock' , ext: ' jar' )
245245```
246246
247247## How to use WireMock in your client tests
@@ -258,7 +258,7 @@ Services based on `spring-cloud-netflix`, i.e. using `feign` and `ribbon`, are a
258258To add a dependency via gradle, extend your `build. gradle` with the following line:
259259
260260```groovy
261- testCompile(' com.epages:wiremock-spring-boot-starter:0.8.9 ' )
261+ testCompile(' com.epages:wiremock-spring-boot-starter:1.0.0 ' )
262262```
263263
264264
@@ -268,7 +268,7 @@ When using maven, add the following dependency in test scope.
268268< dependency>
269269 < groupId> com. epages< / groupId>
270270 < artifactId> wiremock- spring- boot- starter< / artifactId>
271- < version> 0.8 . 9 < / version>
271+ < version> 1.0 . 0 < / version>
272272 < scope> test< / scope>
273273< / dependency>
274274```
@@ -326,7 +326,7 @@ public class MyTest {
326326
327327## Building from source
328328
329- This project uses JDK 11 , with source compatibility for Java 1.8 .
329+ This project uses JDK 21 , with source compatibility for Java 21 .
330330The JDK can be used via [SDKMAN!](https://sdkman.io/).
331331
332332Please execute at least step 1 + 2 if before importing restdocs-wiremock into your IDE.
0 commit comments