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
12 changes: 6 additions & 6 deletions proto-clients/spicedb-java-proto/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ sourceSets {

dependencies {
// BSR Generated SDKs — pre-built proto stubs with all transitive deps resolved
api("build.buf.gen:authzed_api_protocolbuffers_java:34.0.0.1.20260217075218.5b2fc906e1a2")
api("build.buf.gen:authzed_api_grpc_java:1.79.0.2.20260217075218.5b2fc906e1a2")
api("build.buf.gen:authzed_api_protocolbuffers_java:35.0.0.1.20260521180231.55aa23d533a3")
api("build.buf.gen:authzed_api_grpc_java:1.81.0.1.20260521180231.55aa23d533a3")

api("io.grpc:grpc-netty-shaded:1.72.0")
api("io.grpc:grpc-protobuf:1.72.0")
api("io.grpc:grpc-stub:1.72.0")
api("io.grpc:grpc-netty-shaded:1.82.0")
api("io.grpc:grpc-protobuf:1.82.0")
api("io.grpc:grpc-stub:1.82.0")
api("javax.annotation:javax.annotation-api:1.3.2")

testImplementation(platform("org.junit:junit-bom:5.11.4"))
testImplementation(platform("org.junit:junit-bom:6.1.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
Expand Down
2 changes: 1 addition & 1 deletion spicedb-java/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
java
id("com.diffplug.spotless") version "6.25.0"
id("com.diffplug.spotless") version "8.6.0"
}

allprojects {
Expand Down
4 changes: 2 additions & 2 deletions spicedb-java/examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ plugins {
dependencies {
implementation(project(":lib"))

testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter:6.1.0")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.assertj:assertj-core:3.26.3")
testImplementation("org.assertj:assertj-core:3.27.7")
}

tasks.test {
Expand Down
10 changes: 5 additions & 5 deletions spicedb-java/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {
dependencies {
api("com.authzed:spicedb-java-proto")

api("io.grpc:grpc-api:1.68.0")
implementation("io.grpc:grpc-stub:1.68.0")
implementation("io.grpc:grpc-netty-shaded:1.68.0")
implementation("io.grpc:grpc-protobuf:1.68.0")
api("io.grpc:grpc-api:1.82.0")
implementation("io.grpc:grpc-stub:1.82.0")
implementation("io.grpc:grpc-netty-shaded:1.82.0")
implementation("io.grpc:grpc-protobuf:1.82.0")

testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter:6.1.0")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

Expand Down
Loading