Skip to content

Commit

Permalink
Release version: 0.7.26
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Düsterhöft committed Jul 9, 2018
1 parent 9a2eb3b commit 589cc29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -56,7 +56,7 @@ In gradle it would look like this:

```groovy
dependencies {
testCompile('com.epages:restdocs-wiremock:0.7.25')
testCompile('com.epages:restdocs-wiremock:0.7.26')
testCompile('org.springframework.restdocs:spring-restdocs-mockmvc')
}
```
Expand All @@ -79,7 +79,7 @@ When using maven:
<dependency>
<groupId>com.epages</groupId>
<artifactId>restdocs-wiremock</artifactId>
<version>0.7.25</version>
<version>0.7.26</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -249,7 +249,7 @@ On the client side, add a dependency to the test-runtime to the jar containing t
that, the JSON files can be accessed as classpath resources.

```groovy
testRuntime (group:'com.epages', name:'restdocs-server', version:'0.7.25', classifier:'wiremock', ext:'jar')
testRuntime (group:'com.epages', name:'restdocs-server', version:'0.7.26', classifier:'wiremock', ext:'jar')
```

## How to use WireMock in your client tests
Expand All @@ -266,7 +266,7 @@ Services based on `spring-cloud-netflix`, i.e. using `feign` and `ribbon`, are a
To add a dependency via gradle, extend your `build.gradle` with the following line:

```groovy
testCompile('com.epages:wiremock-spring-boot-starter:0.7.25')
testCompile('com.epages:wiremock-spring-boot-starter:0.7.26')
```


Expand All @@ -276,7 +276,7 @@ When using maven, add the following dependency in test scope.
<dependency>
<groupId>com.epages</groupId>
<artifactId>wiremock-spring-boot-starter</artifactId>
<version>0.7.25</version>
<version>0.7.26</version>
<scope>test</scope>
</dependency>
```
Expand Down

0 comments on commit 589cc29

Please sign in to comment.