test: Wiremock extension

This commit is contained in:
Piotr Dec 2024-05-23 22:01:24 +02:00
parent 497574b618
commit b2cbfad2ac
Signed by: stawros
GPG key ID: F89F27AD8F881A91
2 changed files with 52 additions and 0 deletions

View file

@ -27,6 +27,7 @@
<maven.compiler.target>${java.version}</maven.compiler.target>
<!-- dependencies -->
<wiremock.version>3.5.4</wiremock.version>
<!-- plugins -->
<jsonschema2pojo.version>1.2.1</jsonschema2pojo.version>
@ -78,6 +79,12 @@
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>