Skip to content

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/robotframework.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ execute all the steps that we need:
3232
```
3333
2) in another terminal, run Wiremock server, only if your test need it:
3434
```console
35-
./mvnw wiremock:run -DkeepRunning=true
35+
./mvnw wiremock:run -Dwiremock.keepRunning=true
3636
```
3737
3) in another terminal, run integration tests as many times as you need:
3838
```console

docs/wiremock.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ WireMock is automatically running/stopping during integration tests execution (`
1010
## Running manually
1111
In order to run the server as a standalone process:
1212
```console
13-
$ ./mvnw wiremock:run -DkeepRunning=true
13+
$ ./mvnw wiremock:run -Dwiremock.keepRunning=true
1414
```
1515

1616
After that the mock server will be available on 8888 port.

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,8 @@
699699

700700
<togglz.version>2.6.1.Final</togglz.version>
701701
<war.plugin.version>3.3.1</war.plugin.version>
702-
<wiremock.plugin.version>5.0.0</wiremock.plugin.version>
703-
<wiremock.version>2.25.1</wiremock.version>
702+
<wiremock.plugin.version>7.0.0</wiremock.plugin.version>
703+
<wiremock.version>2.27.2</wiremock.version>
704704
</properties>
705705

706706
<build>

0 commit comments

Comments
 (0)