Skip to content

Commit 17c6b18

Browse files
update module name
1 parent 11348e8 commit 17c6b18

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This repository contains the Superstream Clients library and example applications.
44

5-
For detailed information about the library, see the [Superstream Clients Documentation](https://github.com/superstreamlabs/superstream-clients-parent/README.md).
5+
For detailed information about the library, see the [Superstream Clients Documentation](https://github.com/superstreamlabs/superstream-clients-java/README.md).
66

77
## Code Examples
88

examples/akka-kafka-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<groupId>ai.superstream</groupId>
9-
<artifactId>superstream-parent</artifactId>
9+
<artifactId>superstream-clients-java</artifactId>
1010
<version>1.0.0</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

examples/kafka-clients-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<groupId>ai.superstream</groupId>
9-
<artifactId>superstream-parent</artifactId>
9+
<artifactId>superstream-clients-java</artifactId>
1010
<version>1.0.0</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

examples/spring-kafka-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<groupId>ai.superstream</groupId>
9-
<artifactId>superstream-parent</artifactId>
9+
<artifactId>superstream-clients-java</artifactId>
1010
<version>1.0.0</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>ai.superstream</groupId>
8-
<artifactId>superstream-parent</artifactId>
8+
<artifactId>superstream-clients-java</artifactId>
99
<version>1.0.0</version>
1010
<packaging>pom</packaging>
1111

superstream-clients/dependency-reduced-pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<parent>
4-
<artifactId>superstream-parent</artifactId>
4+
<artifactId>superstream-clients-java</artifactId>
55
<groupId>ai.superstream</groupId>
66
<version>1.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>superstream-clients</artifactId>
1010
<name>Superstream Kafka Client Optimizer</name>
1111
<description>A Java library that dynamically optimizes Kafka client configuration based on recommendations</description>
12-
<url>https://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients</url>
12+
<url>https://github.com/superstreamlabs/superstream-clients-java</url>
1313
<licenses>
1414
<license>
1515
<name>The Apache License, Version 2.0</name>
1616
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
1717
</license>
1818
</licenses>
1919
<scm>
20-
<connection>scm:git:git://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients.git</connection>
21-
<developerConnection>scm:git:ssh://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients.git</developerConnection>
22-
<url>https://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients</url>
20+
<connection>scm:git:git://github.com/superstreamlabs/superstream-clients-java.git</connection>
21+
<developerConnection>scm:git:ssh://github.com/superstreamlabs/superstream-clients-java.git</developerConnection>
22+
<url>https://github.com/superstreamlabs/superstream-clients-java</url>
2323
</scm>
2424
<build>
2525
<resources>

superstream-clients/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<groupId>ai.superstream</groupId>
9-
<artifactId>superstream-parent</artifactId>
9+
<artifactId>superstream-clients-java</artifactId>
1010
<version>1.0.0</version>
1111
</parent>
1212

@@ -15,7 +15,7 @@
1515

1616
<name>Superstream Kafka Client Optimizer</name>
1717
<description>A Java library that dynamically optimizes Kafka client configuration based on recommendations</description>
18-
<url>https://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients</url>
18+
<url>https://github.com/superstreamlabs/superstream-clients-java</url>
1919

2020
<!-- License information -->
2121
<licenses>
@@ -27,9 +27,9 @@
2727

2828
<!-- SCM information -->
2929
<scm>
30-
<connection>scm:git:git://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients.git</connection>
31-
<developerConnection>scm:git:ssh://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients.git</developerConnection>
32-
<url>https://github.com/superstreamlabs/superstream-clients-parent/tree/master/superstream-clients</url>
30+
<connection>scm:git:git://github.com/superstreamlabs/superstream-clients-java.git</connection>
31+
<developerConnection>scm:git:ssh://github.com/superstreamlabs/superstream-clients-java.git</developerConnection>
32+
<url>https://github.com/superstreamlabs/superstream-clients-java</url>
3333
</scm>
3434

3535
<!-- Distribution management -->

0 commit comments

Comments
 (0)