Skip to content
Merged
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 docs/deploy/cloud-run.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,12 +543,12 @@ unless you specify it as deployment setting, such as the `--with_ui` option for
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand Down
8 changes: 4 additions & 4 deletions docs/get-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ across supported languages. For a guided introduction, start with the
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<!-- The ADK dev web UI to debug your agent -->
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand All @@ -132,8 +132,8 @@ across supported languages. For a guided introduction, start with the

```title="build.gradle"
dependencies {
implementation 'com.google.adk:google-adk:1.2.0'
implementation 'com.google.adk:google-adk-dev:1.2.0'
implementation 'com.google.adk:google-adk:1.3.0'
implementation 'com.google.adk:google-adk-dev:1.3.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/get-started/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ An ADK agent project requires this dependency in your
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>
```
Expand Down Expand Up @@ -138,13 +138,13 @@ additional settings with the following configuration code:
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<!-- The ADK dev web UI to debug your agent -->
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/streaming/quickstart-streaming-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Replace your existing pom.xml with the following.
<auto-value.version>1.11.0</auto-value.version>
<!-- Main class for exec-maven-plugin -->
<exec.mainClass>samples.liveaudio.LiveAudioRun</exec.mainClass>
<google-adk.version>1.2.0</google-adk.version>
<google-adk.version>1.3.0</google-adk.version>
</properties>

<dependencyManagement>
Expand Down
10 changes: 5 additions & 5 deletions docs/integrations/firestore-session-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ADK provides a native integration for managing persistent agent session states u

Ensure you use the same version for both `google-adk` and `google-adk-firestore-session-service` to guarantee compatibility.

Add the following dependencies to your `pom.xml` (Maven) or `build.gradle` (Gradle), replacing `1.2.0` with your target ADK version:
Add the following dependencies to your `pom.xml` (Maven) or `build.gradle` (Gradle), replacing `1.3.0` with your target ADK version:

### Maven

Expand All @@ -43,13 +43,13 @@ Add the following dependencies to your `pom.xml` (Maven) or `build.gradle` (Grad
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<!-- Firestore Session Service -->
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-firestore-session-service</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>
```
Expand All @@ -59,9 +59,9 @@ Add the following dependencies to your `pom.xml` (Maven) or `build.gradle` (Grad
```gradle
dependencies {
// ADK Core
implementation 'com.google.adk:google-adk:1.2.0'
implementation 'com.google.adk:google-adk:1.3.0'
// Firestore Session Service
implementation 'com.google.adk:google-adk-firestore-session-service:1.2.0'
implementation 'com.google.adk:google-adk-firestore-session-service:1.3.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions examples/java/cloud-run/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<!-- The ADK dev web UI to debug your agent -->
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions examples/java/demos/patent-search-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<!-- The ADK dev web UI to debug your agent -->
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions examples/java/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.google.adk</groupId>
<artifactId>google-adk-dev</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoofinance-api</groupId>
Expand Down
Loading