Skip to content

Commit

Permalink
🐛 fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nilwurtz committed Dec 12, 2023
1 parent a29dd57 commit 53fba30
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.8.0</version>
<version>0.8.1</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.gauge</groupId>
Expand Down
2 changes: 1 addition & 1 deletion examples/testcontainers-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<wiremock.testcontainers.version>1.0-alpha-13</wiremock.testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
<extension.version>0.8.0</extension.version>
<extension.version>0.8.1</extension.version>
<wiremock.version>3.3.1</wiremock.version>
<junit.version>5.10.1</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion examples/testcontainers-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<wiremock.testcontainers.version>1.0-alpha-13</wiremock.testcontainers.version>
<testcontainers.version>1.19.0</testcontainers.version>
<kotlin.version>1.9.20</kotlin.version>
<extension.version>0.7.0</extension.version>
<extension.version>0.8.1</extension.version>
<wiremock.version>3.3.1</wiremock.version>
<junit.version>5.10.1</junit.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion wiremock-graphql-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.8.0</version>
<version>0.8.1</version>
<packaging>jar</packaging>
<name>wiremock-graphql-extension</name>
<description>A WireMock extension for handling GraphQL requests, allowing for easy mocking of GraphQL APIs in
Expand Down

0 comments on commit 53fba30

Please sign in to comment.