Skip to content

Commit

Permalink
Release version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MasonM committed Apr 28, 2021
1 parent 7e1deb1 commit 8da9faf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ There are three ways of running the extension:
1. Standalone, e.g.

```sh
java -jar build/libs/wiremock-jwt-extension-0.6-standalone.jar
java -jar build/libs/wiremock-jwt-extension-0.7-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-standalone/2.27.2/wiremock-standalone-2.27.2.jar
java \
-cp wiremock-standalone-2.27.2.jar:build/libs/wiremock-jwt-extension-0.6.jar \
-cp wiremock-standalone-2.27.2.jar:build/libs/wiremock-jwt-extension-0.7.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 @@ -9,7 +9,7 @@ plugins {
sourceCompatibility = 1.7
group = 'com.github.masonm'
archivesBaseName = 'wiremock-jwt-extension'
version = '0.6'
version = '0.7'

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.6
VERSION=0.7

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

0 comments on commit 8da9faf

Please sign in to comment.