Skip to content

Commit 4f370e5

Browse files
committed
feat: updates GitHub org to imposter-project.
1 parent 1fa2751 commit 4f370e5

39 files changed

+86
-86
lines changed

.github/github-release.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ module.exports = async ({github, context}, assetPaths) => {
9494
async function getExistingRelease(releaseVersion, github) {
9595
console.log(`Checking for release: ${releaseVersion}`);
9696
const releases = await github.rest.repos.listReleases({
97-
owner: 'outofcoffee',
98-
repo: 'imposter',
97+
owner: 'imposter-project',
98+
repo: 'imposter-jvm-engine',
9999
});
100100
let releaseId;
101101
for (const release of releases.data) {
@@ -122,11 +122,11 @@ async function createRelease(releaseVersion, github) {
122122
} catch (e) {
123123
console.warn(`Failed to read CHANGES.md: ${e}`);
124124
}
125-
body += '\n\nSee [change log](https://github.com/outofcoffee/imposter/blob/main/CHANGELOG.md).'
125+
body += '\n\nSee [change log](https://github.com/imposter-project/imposter-jvm-engine/blob/main/CHANGELOG.md).'
126126

127127
const release = await github.rest.repos.createRelease({
128-
owner: 'outofcoffee',
129-
repo: 'imposter',
128+
owner: 'imposter-project',
129+
repo: 'imposter-jvm-engine',
130130
tag_name: releaseVersion,
131131
body,
132132
draft: true,
@@ -151,8 +151,8 @@ async function releaseJar(github, releaseId, localFilePath) {
151151
async function uploadAsset(github, releaseId, assetFileName, localFilePath) {
152152
console.log(`Uploading ${localFilePath} as release asset ${assetFileName}...`);
153153
await github.rest.repos.uploadReleaseAsset({
154-
owner: 'outofcoffee',
155-
repo: 'imposter',
154+
owner: 'imposter-project',
155+
repo: 'imposter-jvm-engine',
156156
release_id: releaseId,
157157
name: assetFileName,
158158
data: await fs.promises.readFile(localFilePath),
@@ -162,8 +162,8 @@ async function uploadAsset(github, releaseId, assetFileName, localFilePath) {
162162
async function publishRelease(github, releaseId) {
163163
console.log(`Publishing release ${releaseId}...`);
164164
await github.rest.repos.updateRelease({
165-
owner: 'outofcoffee',
166-
repo: 'imposter',
165+
owner: 'imposter-project',
166+
repo: 'imposter-jvm-engine',
167167
release_id: releaseId,
168168
draft: false,
169169
});

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Imposter: Scriptable, multipurpose mock server
22

3-
[![CI](https://github.com/outofcoffee/imposter/actions/workflows/cicd.yaml/badge.svg)](https://github.com/outofcoffee/imposter/actions/workflows/cicd.yaml)
3+
[![CI](https://github.com/imposter-project/imposter-jvm-engine/actions/workflows/cicd.yaml/badge.svg)](https://github.com/imposter-project/imposter-jvm-engine/actions/workflows/cicd.yaml)
44

55
> Mock server for REST APIs, OpenAPI (and Swagger) specifications, SOAP web services (and WSDL files), Salesforce and HBase APIs.
66
>

adapter/vertxweb/src/main/java/io/gatehill/imposter/server/vertxweb/util/VertxResourceUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ object VertxResourceUtil {
5757
/**
5858
* Vert.x shouldn't interpret a colon in a path component as the
5959
* start of a path parameter.
60-
* Work-around for https://github.com/outofcoffee/imposter/issues/587
60+
* Work-around for https://github.com/imposter-project/imposter-jvm-engine/issues/587
6161
*/
6262
private val escapeColonsInPath: Boolean
6363
get() = EnvVars.getEnv("IMPOSTER_ESCAPE_COLONS_IN_PATH").toBoolean()

distro/all/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
implementation project (':mock:mock-soap')
2222
implementation project (':mock:mock-wiremock')
2323

24-
// HBase excluded in favour of standalone plugin, due to https://github.com/outofcoffee/imposter/issues/547
24+
// HBase excluded in favour of standalone plugin, due to https://github.com/imposter-project/imposter-jvm-engine/issues/547
2525
// implementation project (':mock:mock-hbase')
2626

2727
// stores

docs/benchmarks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ Configuration and commands to allow benchmarks to be independently reproduced.
5353

5454
#### Scenarios
5555

56-
- Scenario 1: Static, configuration-driven: [examples/rest/simple](https://github.com/outofcoffee/imposter/blob/main/examples/rest/simple)
57-
- Scenario 2: Conditional, configuration-driven: [examples/rest/conditional-config](https://github.com/outofcoffee/imposter/blob/main/examples/rest/conditional-config)
58-
- Scenario 3: Dynamic, script-driven: [examples/rest/conditional-scripted](https://github.com/outofcoffee/imposter/blob/main/examples/rest/conditional-scripted)
56+
- Scenario 1: Static, configuration-driven: [examples/rest/simple](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/simple)
57+
- Scenario 2: Conditional, configuration-driven: [examples/rest/conditional-config](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/conditional-config)
58+
- Scenario 3: Dynamic, script-driven: [examples/rest/conditional-scripted](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/conditional-scripted)
5959

6060
#### Start command
6161

docs/bundle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can create a bundle using [the CLI](./run_imposter_cli.md) using the `impost
3131
$ imposter bundle -t awslambda -o bundle.zip
3232

3333
creating awslambda bundle /users/person/mock using version 3.32.0
34-
downloading https://github.com/outofcoffee/imposter/releases/download/v3.32.0/imposter-awslambda.zip
34+
downloading https://github.com/imposter-project/imposter-jvm-engine/releases/download/v3.32.0/imposter-awslambda.zip
3535
bundling 3 files from workspace
3636
created deployment package
3737
created awslambda bundle: /users/person/mock/bundle.zip
@@ -43,7 +43,7 @@ The bundle file (`bundle.zip` in this example), can be [deployed to AWS Lambda](
4343

4444
If you do not want to use the CLI, you can create a bundle using standard `zip` tools.
4545

46-
Download the latest `imposter-awslambda.zip` distribution from the [Releases page](https://github.com/outofcoffee/imposter/releases).
46+
Download the latest `imposter-awslambda.zip` distribution from the [Releases page](https://github.com/imposter-project/imposter-jvm-engine/releases).
4747

4848
Let's assume your configuration sits in a directory called `config`.
4949

@@ -144,5 +144,5 @@ $ docker run --rm -it -p 8080:8080 example/mocks
144144

145145
This is a standard Docker container image, so you can push it to a registry and run it anywhere Docker runs.
146146

147-
> See [the Docker example project](https://github.com/outofcoffee/imposter/tree/main/examples/docker) for a working example.
147+
> See [the Docker example project](https://github.com/imposter-project/imposter-jvm-engine/tree/main/examples/docker) for a working example.
148148

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ resources:
150150

151151
In this example, responses to both `/example1` and `/example2` will have the header `X-Always-Present: Yes` set, as it is inherited from the root configuration.
152152

153-
> See [default-response-config](https://github.com/outofcoffee/imposter/blob/main/examples/rest/default-response-config) for an example.
153+
> See [default-response-config](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/default-response-config) for an example.
154154

155155
#### Default response values
156156

docs/cors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ cors:
7272

7373
## Examples
7474

75-
- [cors-automatic](https://github.com/outofcoffee/imposter/blob/main/examples/rest/cors-automatic/)
75+
- [cors-automatic](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/cors-automatic/)

docs/data_capture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,4 +425,4 @@ Using JsonPath to capture the request body is computationally expensive, as it r
425425

426426
## Examples
427427

428-
- [data-capture](https://github.com/outofcoffee/imposter/blob/main/examples/rest/data-capture)
428+
- [data-capture](https://github.com/imposter-project/imposter-jvm-engine/blob/main/examples/rest/data-capture)

docs/deploy_aws_lambda_console.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This method uses the AWS Web Console to create a Lambda function, and enables yo
4646

4747
The Imposter engine for AWS Lambda is packaged as a ZIP file. You should upload this file to an S3 bucket, from where it will be referenced by your Lambda function.
4848

49-
Open the [AWS S3 Console](https://s3.console.aws.amazon.com/s3/home). Upload the `imposter-awslambda.zip` file from the [Releases page](https://github.com/outofcoffee/imposter/releases/latest) to an S3 bucket.
49+
Open the [AWS S3 Console](https://s3.console.aws.amazon.com/s3/home). Upload the `imposter-awslambda.zip` file from the [Releases page](https://github.com/imposter-project/imposter-jvm-engine/releases/latest) to an S3 bucket.
5050

5151
For the purposes of this guide, we will assume you have uploaded the ZIP file to a bucket named `example-imposter-bucket`, so the full path to the file would be:
5252

@@ -85,7 +85,7 @@ Set the environment variable to point to the path holding the configuration file
8585
8686
*Important:* Ensure the Lambda execution role has permission to access the S3 bucket containing your configuration.
8787

88-
See [deploy/example/bucket-policy.json](https://raw.githubusercontent.com/outofcoffee/imposter/main/distro/awslambda/deploy/example/bucket-policy.json) for an example IAM role.
88+
See [deploy/example/bucket-policy.json](https://raw.githubusercontent.com/imposter-project/imposter-jvm-engine/main/distro/awslambda/deploy/example/bucket-policy.json) for an example IAM role.
8989

9090
![Lambda environment variables](./images/lambda_config_env.png)
9191

0 commit comments

Comments
 (0)