Skip to content

Commit c0de3ce

Browse files
committed
Update dependencies and docs
1 parent 4a40a4a commit c0de3ce

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- master
6+
- '*.x'
67
pull_request:
78
types: [opened, synchronize, reopened]
89

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ In gradle it would look like this:
6262

6363
```groovy
6464
dependencies {
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
241241
that, 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
258258
To 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.
330330
The JDK can be used via [SDKMAN!](https://sdkman.io/).
331331
332332
Please execute at least step 1 + 2 if before importing restdocs-wiremock into your IDE.

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ buildscript {
55
}
66

77
plugins {
8-
id 'com.github.ben-manes.versions' version '0.46.0'
9-
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
10-
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
8+
id 'com.github.ben-manes.versions' version '0.51.0'
9+
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
10+
id 'io.spring.dependency-management' version '1.1.6'
1111
id 'org.sonarqube' version '4.0.0.2929'
12-
id 'pl.allegro.tech.build.axion-release' version '1.15.0'
12+
id 'pl.allegro.tech.build.axion-release' version '1.18.4'
1313
id 'publishing'
1414
}
1515

0 commit comments

Comments
 (0)