Skip to content

Commit 5e3b447

Browse files
committed
fix: Rename client-http to http-client since it's used by both client and server code
1 parent 565014c commit 5e3b447

9 files changed

Lines changed: 6 additions & 6 deletions

File tree

client-config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependencies>
2020
<dependency>
2121
<groupId>${project.groupId}</groupId>
22-
<artifactId>a2a-java-sdk-client-http</artifactId>
22+
<artifactId>a2a-java-sdk-http-client</artifactId>
2323
<version>${project.version}</version>
2424
</dependency>
2525
<dependency>

client-transport/jsonrpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</dependency>
3030
<dependency>
3131
<groupId>${project.groupId}</groupId>
32-
<artifactId>a2a-java-sdk-client-http</artifactId>
32+
<artifactId>a2a-java-sdk-http-client</artifactId>
3333
<version>${project.version}</version>
3434
</dependency>
3535
<dependency>

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</dependency>
2525
<dependency>
2626
<groupId>${project.groupId}</groupId>
27-
<artifactId>a2a-java-sdk-client-http</artifactId>
27+
<artifactId>a2a-java-sdk-http-client</artifactId>
2828
<version>${project.version}</version>
2929
</dependency>
3030
<dependency>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>a2a-java-sdk-parent</artifactId>
1010
<version>0.2.6.Beta1-SNAPSHOT</version>
1111
</parent>
12-
<artifactId>a2a-java-sdk-client-http</artifactId>
12+
<artifactId>a2a-java-sdk-http-client</artifactId>
1313

1414
<packaging>jar</packaging>
1515

client-http/src/main/java/io/a2a/client/http/A2AHttpClient.java renamed to http-client/src/main/java/io/a2a/client/http/A2AHttpClient.java

File renamed without changes.

client-http/src/main/java/io/a2a/client/http/A2AHttpResponse.java renamed to http-client/src/main/java/io/a2a/client/http/A2AHttpResponse.java

File renamed without changes.

client-http/src/main/java/io/a2a/client/http/JdkA2AHttpClient.java renamed to http-client/src/main/java/io/a2a/client/http/JdkA2AHttpClient.java

File renamed without changes.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
<modules>
282282
<module>client</module>
283283
<module>client-config</module>
284-
<module>client-http</module>
284+
<module>http-client</module>
285285
<module>client-transport/grpc</module>
286286
<module>client-transport/jsonrpc</module>
287287
<module>client-transport/spi</module>

server-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</dependency>
2525
<dependency>
2626
<groupId>${project.groupId}</groupId>
27-
<artifactId>a2a-java-sdk-client-http</artifactId>
27+
<artifactId>a2a-java-sdk-http-client</artifactId>
2828
<version>${project.version}</version>
2929
</dependency>
3030
<dependency>

0 commit comments

Comments
 (0)