Skip to content

Commit 7e8f9c9

Browse files
committed
Update README and POM to correct repository links for plugin
1 parent 4fa9555 commit 7e8f9c9

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Apache JMeter Copilot Chat Plugin
22

3-
[![Build](https://github.com/brunoborges/jmeter-copilot-extension/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/brunoborges/jmeter-copilot-extension/actions/workflows/build.yml)
3+
[![Build](https://github.com/brunoborges/jmeter-copilot-plugin/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/brunoborges/jmeter-copilot-plugin/actions/workflows/build.yml)
44
[![Java 17+](https://img.shields.io/badge/Java-17%2B-blue?logo=openjdk&logoColor=white)](https://openjdk.org/)
55
[![Apache JMeter](https://img.shields.io/badge/JMeter-5.6.3%2B-green?logo=apache&logoColor=white)](https://jmeter.apache.org/)
6-
[![License: MIT](https://img.shields.io/github/license/brunoborges/jmeter-copilot-extension)](https://github.com/brunoborges/jmeter-copilot-extension/blob/main/LICENSE)
6+
[![License: MIT](https://img.shields.io/github/license/brunoborges/jmeter-copilot-plugin)](https://github.com/brunoborges/jmeter-copilot-plugin/blob/main/LICENSE)
77

88
An Apache JMeter plugin that provides a GitHub Copilot Chat experience for generating JMeter test plans through natural language conversation.
99

@@ -32,36 +32,36 @@ Download the latest release and install it to your JMeter installation with a si
3232
Using `JMETER_HOME` environment variable:
3333

3434
```bash
35-
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o $JMETER_HOME/lib/ext/jmeter-copilot-plugin.jar
35+
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o $JMETER_HOME/lib/ext/jmeter-copilot-plugin.jar
3636
```
3737

3838
Or specify the JMeter path directly:
3939

4040
```bash
41-
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o /path/to/jmeter/lib/ext/jmeter-copilot-plugin.jar
41+
curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o /path/to/jmeter/lib/ext/jmeter-copilot-plugin.jar
4242
```
4343

4444
#### Windows (PowerShell)
4545

4646
Using `JMETER_HOME` environment variable:
4747

4848
```powershell
49-
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest"
49+
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest"
5050
$jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url
5151
Invoke-WebRequest -Uri $jarUrl -OutFile "$env:JMETER_HOME\lib\ext\jmeter-copilot-plugin.jar"
5252
```
5353

5454
Or specify the JMeter path directly:
5555

5656
```powershell
57-
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest"
57+
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-plugin/releases/latest"
5858
$jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url
5959
Invoke-WebRequest -Uri $jarUrl -OutFile "C:\path\to\jmeter\lib\ext\jmeter-copilot-plugin.jar"
6060
```
6161

6262
### Manual Installation
6363

64-
1. Download the latest JAR from [GitHub Releases](https://github.com/brunoborges/jmeter-copilot-extension/releases/latest)
64+
1. Download the latest JAR from [GitHub Releases](https://github.com/brunoborges/jmeter-copilot-plugin/releases/latest)
6565
2. Copy the JAR file to your JMeter `lib/ext` directory
6666
3. Restart JMeter
6767

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<description>JMeter plugin that integrates GitHub Copilot Chat for generating test plans</description>
1414

1515
<scm>
16-
<connection>scm:git:https://github.com/brunoborges/jmeter-copilot-extension.git</connection>
17-
<developerConnection>scm:git:https://github.com/brunoborges/jmeter-copilot-extension.git</developerConnection>
18-
<url>https://github.com/brunoborges/jmeter-copilot-extension</url>
16+
<connection>scm:git:https://github.com/brunoborges/jmeter-copilot-plugin.git</connection>
17+
<developerConnection>scm:git:https://github.com/brunoborges/jmeter-copilot-plugin.git</developerConnection>
18+
<url>https://github.com/brunoborges/jmeter-copilot-plugin</url>
1919
<tag>HEAD</tag>
2020
</scm>
2121

0 commit comments

Comments
 (0)