Skip to content

Commit d692999

Browse files
committed
Update groupId and project details for consistency across files
1 parent e0f1c97 commit d692999

3 files changed

Lines changed: 15 additions & 14 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
.DS_Store
12
target

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Run `mvn install` locally, then configure the dependency in your project.
1818

1919
```xml
2020
<dependency>
21-
<groupId>com.github.copilot</groupId>
21+
<groupId>io.github.copilot-community-sdk</groupId>
2222
<artifactId>copilot-sdk</artifactId>
2323
<version>0.1.0</version>
2424
</dependency>
@@ -27,15 +27,15 @@ Run `mvn install` locally, then configure the dependency in your project.
2727
### Gradle
2828

2929
```groovy
30-
implementation 'com.github.copilot:copilot-sdk:0.1.0'
30+
implementation 'io.github.copilot-community-sdk:copilot-sdk:0.1.0'
3131
```
3232

3333
## Quick Start
3434

3535
```java
36-
import com.github.copilot.sdk.*;
37-
import com.github.copilot.sdk.events.*;
38-
import com.github.copilot.sdk.json.*;
36+
import io.github.copilot.community.sdk.*;
37+
import io.github.copilot.community.sdk.events.*;
38+
import io.github.copilot.community.sdk.json.*;
3939

4040
import java.util.concurrent.CompletableFuture;
4141

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
88
<modelVersion>4.0.0</modelVersion>
99

10-
<groupId>com.github.copilot</groupId>
10+
<groupId>io.github.copilot-community-sdk</groupId>
1111
<artifactId>copilot-sdk</artifactId>
1212
<version>0.1.0</version>
1313
<packaging>jar</packaging>
1414

15-
<name>GitHub Copilot SDK</name>
15+
<name>GitHub Copilot Community SDK :: Java</name>
1616
<description>SDK for programmatic control of GitHub Copilot CLI</description>
17-
<url>https://github.com/github/copilot-sdk</url>
17+
<url>https://github.com/copilot-community-sdk/copilot-sdk-java</url>
1818

1919
<licenses>
2020
<license>
@@ -25,16 +25,16 @@
2525

2626
<developers>
2727
<developer>
28-
<name>GitHub</name>
29-
<organization>GitHub</organization>
30-
<organizationUrl>https://github.com</organizationUrl>
28+
<name>GitHub Copilot Community SDK</name>
29+
<organization>GitHub Copilot Community SDK</organization>
30+
<organizationUrl>https://github.com/copilot-community-sdk</organizationUrl>
3131
</developer>
3232
</developers>
3333

3434
<scm>
35-
<connection>scm:git:git://github.com/github/copilot-sdk.git</connection>
36-
<developerConnection>scm:git:ssh://github.com:github/copilot-sdk.git</developerConnection>
37-
<url>https://github.com/github/copilot-sdk</url>
35+
<connection>scm:git:git://github.com/copilot-community-sdk/copilot-sdk-java.git</connection>
36+
<developerConnection>scm:git:ssh://github.com:copilot-community-sdk/copilot-sdk-java.git</developerConnection>
37+
<url>https://github.com/copilot-community-sdk/copilot-sdk-java</url>
3838
</scm>
3939

4040
<properties>

0 commit comments

Comments
 (0)