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
20 changes: 10 additions & 10 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
application
kotlin("jvm") version "2.3.20"
kotlin("jvm") version "2.4.0"
}

application {
Expand All @@ -22,19 +22,19 @@ dependencies {
}
}

implementation("com.fasterxml.jackson.core:jackson-databind:2.21.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
implementation("software.amazon.awssdk:sagemakerruntime:2.42.27")
implementation("software.amazon.awssdk:bedrockruntime:2.42.27")
implementation("com.fasterxml.jackson.core:jackson-databind:2.22.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0")
implementation("software.amazon.awssdk:sagemakerruntime:2.46.9")
implementation("software.amazon.awssdk:bedrockruntime:2.46.9")
// If a customer is using the Vertex SDK themselves, they include this line.
// If they have this line, they don't need the runtimeOnly declaration above.
implementation("com.google.cloud:google-cloud-vertexai:1.50.0")
implementation("com.google.cloud:google-cloud-vertexai:1.52.0")

constraints {
implementation("io.netty:netty-codec-http:4.2.12.Final")
implementation("io.netty:netty-codec-http2:4.2.12.Final")
implementation("io.grpc:grpc-netty-shaded:1.80.0")
implementation("com.google.protobuf:protobuf-java:4.34.1")
implementation("io.netty:netty-codec-http:4.2.15.Final")
implementation("io.netty:netty-codec-http2:4.2.15.Final")
implementation("io.grpc:grpc-netty-shaded:1.82.0")
implementation("com.google.protobuf:protobuf-java:4.35.1")
}
}

Expand Down
16 changes: 8 additions & 8 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ java {
dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.23.0")
testImplementation("software.amazon.awssdk:bedrockruntime:2.42.27")
testImplementation("software.amazon.awssdk:bedrockruntime:2.46.9")

implementation("com.fasterxml.jackson.jr:jackson-jr-all:2.21.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.21.2")
implementation("com.fasterxml.jackson.jr:jackson-jr-all:2.22.0")
implementation("com.fasterxml.jackson.core:jackson-databind:2.22.0")
implementation("com.github.spullara.mustache.java:compiler:0.9.14")
"geminiImplementation"("com.google.cloud:google-cloud-vertexai:1.50.0")
"geminiImplementation"("com.google.cloud:google-cloud-vertexai:1.52.0")

constraints {
implementation("io.netty:netty-codec-http:4.2.12.Final")
implementation("io.netty:netty-codec-http2:4.2.12.Final")
implementation("io.grpc:grpc-netty-shaded:1.80.0")
implementation("com.google.protobuf:protobuf-java:4.34.1")
implementation("io.netty:netty-codec-http:4.2.15.Final")
implementation("io.netty:netty-codec-http2:4.2.15.Final")
implementation("io.grpc:grpc-netty-shaded:1.82.0")
implementation("com.google.protobuf:protobuf-java:4.35.1")
}
}

Expand Down
Loading