Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Add the dependency to your `pom.xml`:
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<scope>compile</scope>
</dependency>
```
Expand All @@ -106,7 +106,7 @@ Add the dependency to your `pom.xml`:
```
dependencies {
// Source: https://mvnrepository.com/artifact/com.google.cloud.mcp/mcp-toolbox-sdk-java
implementation("com.google.cloud.mcp:mcp-toolbox-sdk-java:1.0.0") // {x-version-update:mcp-toolbox-sdk-java:current}
implementation("com.google.cloud.mcp:mcp-toolbox-sdk-java:1.0.1-SNAPSHOT") // {x-version-update:mcp-toolbox-sdk-java:current}
}
```

Expand Down
2 changes: 1 addition & 1 deletion demo-applications/cymbal-transit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
</dependency>

<!-- Java Annotations -->
Expand Down
2 changes: 1 addition & 1 deletion demo-applications/spring-boot-postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Add the MCP Toolbox Java SDK dependency to your `pom.xml`:
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion demo-applications/spring-boot-postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
</dependency>

<!-- Jackson JSON -->
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ In any case remember to change the `YOUR_TOOLBOX_SERVICE_ENDPOINT` placeholder i
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version> <!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<groupId>com.google.cloud.mcp</groupId>
<artifactId>mcp-toolbox-sdk-java</artifactId>
<version>1.0.0</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<version>1.0.1-SNAPSHOT</version><!-- {x-version-update:mcp-toolbox-sdk-java:current} -->
<name>MCP Toolbox SDK for Java</name>
<description>Java client library for the Model Context Protocol (MCP) Toolbox.</description>
<url>https://github.com/googleapis/mcp-toolbox-sdk-java</url>
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

mcp-toolbox-sdk-java:1.0.0:1.0.0
mcp-toolbox-sdk-java:1.0.0:1.0.1-SNAPSHOT
Loading