Skip to content

Commit

Permalink
Rename repository to wiremock-state-extension
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Oct 30, 2023
1 parent 8c56bed commit b6fc4f8
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .run/WireMock Docker Demo.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<settings>
<option name="imageTag" value="wiremock/wiremock:3x" />
<option name="command" value="--global-response-templating --jetty-header-request-size 32768 --jetty-header-response-size 32768 --verbose" />
<option name="containerName" value="wiremock-extension-state-test" />
<option name="containerName" value="wiremock-state-extension-test" />
<option name="portBindings">
<list>
<DockerPortBindingImpl>
Expand Down
2 changes: 1 addition & 1 deletion .run/WireMock Docker Test.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<settings>
<option name="imageTag" value="wiremock/wiremock:3x" />
<option name="command" value="--global-response-templating --verbose" />
<option name="containerName" value="wiremock-extension-state-test" />
<option name="containerName" value="wiremock-state-extension-test" />
<option name="portBindings">
<list>
<DockerPortBindingImpl>
Expand Down
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ wiremock/wiremock:3x \

## Releasing

To release the module, go to [GitHub Releases](https://github.com/wiremock/wiremock-extension-state/releases) and
To release the module, go to [GitHub Releases](https://github.com/wiremock/wiremock-state-extension/releases) and
issue the release using the changelog draft.
The new release will trigger the [Release GitHub Action](https://github.com/wiremock/wiremock-extension-state/actions/workflows/release.yml)
The new release will trigger the [Release GitHub Action](https://github.com/wiremock/wiremock-state-extension/actions/workflows/release.yml)
which will deploy the artifacts to Maven Central.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# WireMock State extension

[![GitHub release (latest by date)](https://img.shields.io/github/v/release/wiremock/wiremock-extension-state)](https://github.com/wiremock/wiremock-extension-state/releases)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/wiremock/wiremock-state-extension)](https://github.com/wiremock/wiremock-state-extension/releases)
[![Slack](https://img.shields.io/badge/slack-slack.wiremock.org-brightgreen?style=flat&logo=slack)](https://slack.wiremock.org/)
[![GitHub contributors](https://img.shields.io/github/contributors/wiremock/wiremock-extension-state)](https://github.com/wiremock/wiremock-extension-state/graphs/contributors)
[![GitHub contributors](https://img.shields.io/github/contributors/wiremock/wiremock-state-extension)](https://github.com/wiremock/wiremock-state-extension/graphs/contributors)

<p align="center">
<a href="https://wiremock.org" target="_blank">
Expand Down Expand Up @@ -172,7 +172,7 @@ the `GET` won't have any knowledge of the previous post.

## Compatibility matrix

| `wiremock-extension-state` version | `WireMock` version |
| `wiremock-state-extension` version | `WireMock` version |
|------------------------------------|--------------------|
| `0.0.3`+ | `3.0.0-beta-11`+ |
| `0.0.6`+ | `3.0.0-beta-14`+ |
Expand Down
26 changes: 15 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/wiremock/wiremock-extension-state"
url = "https://maven.pkg.github.com/wiremock/wiremock-state-extension"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand All @@ -121,13 +121,13 @@ publishing {
pom {
name = "${baseArtifact}"
description = 'A WireMock extension to transfer state in between stubs'
url = 'https://github.com/dirkbolte/wiremock-extension-state'
url = 'https://github.com/wiremock/wiremock-state-extension'


scm {
connection = 'https://github.com/dirkbolte/wiremock-extension-state.git'
developerConnection = 'https://github.com/dirkbolte/wiremock-extension-state.git'
url = 'https://github.com/dirkbolte/wiremock-extension-state.git'
connection = 'https://github.com/wiremock/wiremock-state-extension.git'
developerConnection = 'https://github.com/wiremock/wiremock-state-extension.git'
url = 'https://github.com/wiremock/wiremock-state-extension.git'
}

licenses {
Expand Down Expand Up @@ -156,13 +156,13 @@ publishing {

name = "${baseArtifact}-standalone"
description = 'A WireMock extension to transfer state in between stubs - to be used with WireMock standalone'
url = 'https://github.com/dirkbolte/wiremock-extension-state'
url = 'https://github.com/wiremock/wiremock-state-extension'


scm {
connection = 'https://github.com/dirkbolte/wiremock-extension-state.git'
developerConnection = 'https://github.com/dirkbolte/wiremock-extension-state.git'
url = 'https://github.com/dirkbolte/wiremock-extension-state.git'
connection = 'https://github.com/wiremock/wiremock-state-extension.git'
developerConnection = 'https://github.com/wiremock/wiremock-state-extension.git'
url = 'https://github.com/wiremock/wiremock-state-extension.git'
}

licenses {
Expand Down Expand Up @@ -239,8 +239,12 @@ nexusPublishing {
// TODO: allow configuring destinations for oss1
// nexusUrl.set(uri("https://oss.sonatype.org/service/local/"))
// snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/snapshots/"))
username.set(providers.environmentVariable("OSSRH_USERNAME").orElse(null).get())
password.set(providers.environmentVariable("OSSRH_TOKEN").orElse(null).get())
def envUsername = providers.environmentVariable("OSSRH_USERNAME").orElse(null).get()
def envPassword = providers.environmentVariable("OSSRH_TOKEN").orElse(null).get()
if (envUsername != null && envPassword != null) {
username.set(envUsername)
password.set(envPassword)
}
}
}
}
6 changes: 3 additions & 3 deletions demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is a demonstration of the WireMock State Extension, showcasing its initial
## General Overview

- **Watch the Demo Video**: [WireMock State Extension Demo Video](https://www.youtube.com/watch?v=OUrMEpzHbvY)
- **View the Slides**: [WireMock State Extension Slides](https://github.com/wiremock/wiremock-extension-state/blob/develop/demo/wiremock_state_extension_webinar.pdf)
- **View the Slides**: [WireMock State Extension Slides](https://github.com/wiremock/wiremock-state-extension/blob/develop/demo/wiremock_state_extension_webinar.pdf)

## Initial Feature Set: The State

Expand Down Expand Up @@ -83,8 +83,8 @@ Before you begin, ensure you have the following prerequisites installed on your
### Step 1: Clone the WireMock State Extension Repository

```shell
git clone https://github.com/wiremock/wiremock-extension-state.git
cd wiremock-extension-state
git clone https://github.com/wiremock/wiremock-state-extension.git
cd wiremock-state-extension
```

### Step 2: Build the Project
Expand Down

0 comments on commit b6fc4f8

Please sign in to comment.