From 53fba3064a7ad3eed602cda981bc46a5301525f5 Mon Sep 17 00:00:00 2001 From: nilwurtz Date: Tue, 12 Dec 2023 23:28:19 +0900 Subject: [PATCH] :bug: fix ci --- .github/workflows/ci.yaml | 4 ++++ CHANGELOG.md | 1 + e2e/pom.xml | 2 +- examples/testcontainers-java/pom.xml | 2 +- examples/testcontainers-kotlin/pom.xml | 2 +- wiremock-graphql-extension/pom.xml | 2 +- 6 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b8cf412..fe64a72 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -60,6 +60,10 @@ jobs: java-version: '17' distribution: 'corretto' + - name: Install to local repository + run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V + working-directory: wiremock-graphql-extension + - name: Check example validity kotlin run: mvn test working-directory: examples/testcontainers-kotlin diff --git a/CHANGELOG.md b/CHANGELOG.md index 4785c04..103a6e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added ### Changed +- Added `@JvmStatic` annotation to `GraphqlBodyMatcher.Companion.withRequest` method to allow Java clients to use the method without `Companion`. ([#16](https://github.com/wiremock/wiremock-graphql-extension/pull/16) from @kyle-winkelman) ## [0.8.0] - 2023-12-08 ### Changed diff --git a/e2e/pom.xml b/e2e/pom.xml index 3425a44..d02e970 100644 --- a/e2e/pom.xml +++ b/e2e/pom.xml @@ -22,7 +22,7 @@ wiremock-graphql-extension io.github.nilwurtz - 0.8.0 + 0.8.1 com.thoughtworks.gauge diff --git a/examples/testcontainers-java/pom.xml b/examples/testcontainers-java/pom.xml index 7a50381..aec2fa9 100644 --- a/examples/testcontainers-java/pom.xml +++ b/examples/testcontainers-java/pom.xml @@ -15,7 +15,7 @@ UTF-8 1.0-alpha-13 1.19.0 - 0.8.0 + 0.8.1 3.3.1 5.10.1 diff --git a/examples/testcontainers-kotlin/pom.xml b/examples/testcontainers-kotlin/pom.xml index 263ac88..86a1480 100644 --- a/examples/testcontainers-kotlin/pom.xml +++ b/examples/testcontainers-kotlin/pom.xml @@ -20,7 +20,7 @@ 1.0-alpha-13 1.19.0 1.9.20 - 0.7.0 + 0.8.1 3.3.1 5.10.1 diff --git a/wiremock-graphql-extension/pom.xml b/wiremock-graphql-extension/pom.xml index b94bc3c..7776753 100644 --- a/wiremock-graphql-extension/pom.xml +++ b/wiremock-graphql-extension/pom.xml @@ -6,7 +6,7 @@ wiremock-graphql-extension io.github.nilwurtz - 0.8.0 + 0.8.1 jar wiremock-graphql-extension A WireMock extension for handling GraphQL requests, allowing for easy mocking of GraphQL APIs in