Skip to content

Commit

Permalink
Release version 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonM committed Mar 15, 2023
1 parent dceb14d commit 864594b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Maven:
<dependency>
<groupId>com.github.masonm</groupId>
<artifactId>wiremock-jwt-extension</artifactId>
<version>0.9</version>
<version>0.10</version>
</dependency>
```

Gradle:
```groovy
implementation 'com.github.masonm:wiremock-jwt-extension:0.9'
implementation 'com.github.masonm:wiremock-jwt-extension:0.10'
```

# Running
Expand All @@ -32,15 +32,15 @@ There are three ways of running the extension:
1. Standalone, e.g.

```sh
java -jar build/libs/wiremock-jwt-extension-0.9-standalone.jar
java -jar build/libs/wiremock-jwt-extension-0.10-standalone.jar
```

2. As an extension of the WireMock standalone JAR, e.g.

```sh
wget -nc https://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-jre8-standalone/2.33.2/wiremock-jre8-standalone-2.33.2.jar
java \
-cp wiremock-jre8-standalone-2.33.2.jar:build/libs/wiremock-jwt-extension-0.9.jar \
-cp wiremock-jre8-standalone-2.33.2.jar:build/libs/wiremock-jwt-extension-0.10.jar \
com.github.tomakehurst.wiremock.standalone.WireMockServerRunner \
--extensions="com.github.masonm.JwtMatcherExtension,com.github.masonm.JwtStubMappingTransformer"
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
sourceCompatibility = 1.7
group = 'com.github.masonm'
archivesBaseName = 'wiremock-jwt-extension'
version = '0.9'
version = '0.10'

repositories {
// Canonical URLs at https://central.sonatype.org/pages/consumers.html
Expand Down
2 changes: 1 addition & 1 deletion test-helpers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=0.9
VERSION=0.10

launchWiremock() {
echo "Launching Wiremock and setting up proxying"
Expand Down

0 comments on commit 864594b

Please sign in to comment.