From 417c7f9f071ceb992e88a394691a0d6c80ff3821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vi=C3=B1as=20Alcon?= Date: Tue, 7 Nov 2023 20:44:33 +0100 Subject: [PATCH] Update wiremock (#21) --- README.md | 1 + build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 28cfba4..af826ac 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [![CI](https://github.com/rogervinas/wiremock-testing/actions/workflows/gradle.yml/badge.svg?branch=master)](https://github.com/rogervinas/wiremock-testing/actions/workflows/gradle.yml) ![Java](https://img.shields.io/badge/Java-17-blue?labelColor=black) ![Kotlin](https://img.shields.io/badge/Kotlin-1.9.20-blue?labelColor=black) +![WireMock](https://img.shields.io/badge/WireMock-3.3.1-blue?labelColor=black) # WireMock Testing diff --git a/build.gradle.kts b/build.gradle.kts index 746bdb5..460ebaf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { testImplementation("org.junit.jupiter:junit-jupiter:5.8.2") testImplementation("io.mockk:mockk:1.12.2") testImplementation("org.assertj:assertj-core:3.24.2") - testImplementation("com.github.tomakehurst:wiremock-jre8:3.0.1") + testImplementation("org.wiremock:wiremock:3.3.1") testImplementation("org.testcontainers:testcontainers:1.19.1") testImplementation("org.testcontainers:junit-jupiter:1.19.1") }