Skip to content

Commit 24e2533

Browse files
committed
update groupid
1 parent 1097a1e commit 24e2533

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<groupId>io.github.bella-top</groupId>
7+
<groupId>top.bella</groupId>
88
<artifactId>openai-java</artifactId>
99
<version>0.23.1</version>
1010
</parent>
1111
<packaging>jar</packaging>
12-
<artifactId>api</artifactId>
13-
<name>api</name>
12+
<artifactId>openai-api</artifactId>
13+
<name>openai-api</name>
1414
<description>Basic java objects for the OpenAI GPT APIs</description>
1515

1616
<properties>

client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<groupId>io.github.bella-top</groupId>
7+
<groupId>top.bella</groupId>
88
<artifactId>openai-java</artifactId>
99
<version>0.23.1</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212

1313

14-
<artifactId>client</artifactId>
15-
<name>client</name>
14+
<artifactId>openai-client</artifactId>
15+
<name>openai-client</name>
1616
<description>Basic retrofit client for OpenAI's GPT APIs</description>
1717

1818
<dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>io.github.bella-top</groupId>
6+
<groupId>top.bella</groupId>
77
<artifactId>openai-java</artifactId>
88
<version>0.23.1</version>
99
<packaging>pom</packaging>

service/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<groupId>io.github.bella-top</groupId>
7+
<groupId>top.bella</groupId>
88
<artifactId>openai-java</artifactId>
99
<version>0.23.1</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212

13-
<artifactId>service</artifactId>
14-
<name>service</name>
13+
<artifactId>openai-service</artifactId>
14+
<name>openai-service</name>
1515
<description>Basic service to create and use an OpenAI retrofit client</description>
1616

1717
<dependencies>
1818
<dependency>
19-
<groupId>io.github.bella-top</groupId>
20-
<artifactId>client</artifactId>
19+
<groupId>top.bella</groupId>
20+
<artifactId>openai-client</artifactId>
2121
<version>${project.version}</version>
2222
</dependency>
2323
<dependency>

0 commit comments

Comments
 (0)