Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit e1f2112

Browse files
committed
rename
1 parent 093cde3 commit e1f2112

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ A Java SDK for interacting with the S2 streaming service. This SDK provides a ho
1919

2020
1. Clone the repository:
2121
```bash
22-
git clone https://github.com/yourusername/s2-java-sdk.git
23-
cd s2-java-sdk
22+
git clone https://github.com/s2-streamstore/s2-sdk-java
23+
cd s2-sdk-java
2424
```
2525

2626
2. Build the project:
@@ -39,7 +39,7 @@ Add this dependency to your `pom.xml`:
3939

4040
```xml
4141
<dependency>
42-
<groupId>org.twelvehart</groupId>
42+
<groupId>dev.s2</groupId>
4343
<artifactId>s2</artifactId>
4444
<version>0.0.1</version>
4545
</dependency>
@@ -51,7 +51,7 @@ Add this dependency to your `build.gradle.kts`:
5151

5252
```kotlin
5353
dependencies {
54-
implementation("org.twelvehart:s2:0.0.1")
54+
implementation("dev.s2:s2:0.0.1")
5555
}
5656
```
5757

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
org.gradle.parallel=true
55
org.gradle.caching=true
66

7-
group=org.twelvehart
7+
group=dev.s2

s2/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ publishing {
8383
repositories {
8484
maven {
8585
name = "GitHubPackages"
86-
url = uri("https://maven.pkg.github.com/ASRagab/s2-java-sdk")
86+
url = uri("https://maven.pkg.github.com/s2-streamstore/s2-sdk-java")
8787
credentials {
8888
username = System.getenv("GITHUB_ACTOR")
8989
password = System.getenv("GITHUB_TOKEN")

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ plugins {
1111
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
1212
}
1313

14-
rootProject.name = "s2-java-sdk"
14+
rootProject.name = "s2-sdk-java"
1515
include("app", "s2")

0 commit comments

Comments
 (0)