@@ -26,22 +26,11 @@ Three API styles for building agents:
2626
2727## Installation
2828
29- Snapshot builds are published to Maven Central Snapshots. Add the snapshot repository and dependency:
30-
3129``` xml
32- <repositories >
33- <repository >
34- <id >central-snapshots</id >
35- <url >https://central.sonatype.com/repository/maven-snapshots/</url >
36- <snapshots ><enabled >true</enabled ></snapshots >
37- <releases ><enabled >false</enabled ></releases >
38- </repository >
39- </repositories >
40-
4130<dependency >
4231 <groupId >com.agentclientprotocol</groupId >
4332 <artifactId >acp-core</artifactId >
44- <version >0.9.0-SNAPSHOT </version >
33+ <version >0.9.0</version >
4534</dependency >
4635```
4736
@@ -50,7 +39,7 @@ For annotation-based agent development:
5039<dependency >
5140 <groupId >com.agentclientprotocol</groupId >
5241 <artifactId >acp-agent-support</artifactId >
53- <version >0.9.0-SNAPSHOT </version >
42+ <version >0.9.0</version >
5443</dependency >
5544```
5645
@@ -59,7 +48,7 @@ For WebSocket server support (agents accepting WebSocket connections):
5948<dependency >
6049 <groupId >com.agentclientprotocol</groupId >
6150 <artifactId >acp-websocket-jetty</artifactId >
62- <version >0.9.0-SNAPSHOT </version >
51+ <version >0.9.0</version >
6352</dependency >
6453```
6554
@@ -454,16 +443,14 @@ This SDK is part of the [Agent Client Protocol](https://agentclientprotocol.com/
454443
455444## Roadmap
456445
457- ### v0.9.0 (Current)
446+ ### v0.9.0 (Current — [ Maven Central ] ( https://central.sonatype.com/artifact/com.agentclientprotocol/acp-core ) )
458447- Client and Agent SDKs with async/sync APIs
459448- Stdio and WebSocket transports
460449- Capability negotiation
461450- Structured error handling
462451- Full protocol compliance (all SessionUpdate types, MCP configs, ` _meta ` extensibility)
463- - Snapshot builds published to Maven Central Snapshots
464452- 258 tests
465453
466454### v1.0.0 (Planned)
467- - Stable release published to Maven Central
468455- Production hardening
469456- Performance optimizations
0 commit comments