@@ -9,7 +9,7 @@ plugins {
99
1010repositories {
1111 // The Google mirror is less flaky than mavenCentral()
12- maven { url " https://maven-central.storage-download.googleapis.com/maven2/" }
12+ maven { url = " https://maven-central.storage-download.googleapis.com/maven2/" }
1313 mavenCentral()
1414 mavenLocal()
1515}
@@ -73,21 +73,23 @@ signing {
7373java {
7474 withJavadocJar()
7575 withSourcesJar()
76- sourceCompatibility = JavaVersion . VERSION_1_8
77- targetCompatibility = JavaVersion . VERSION_1_8
76+ sourceCompatibility = JavaVersion . VERSION_17
77+ targetCompatibility = JavaVersion . VERSION_17
7878}
7979
8080tasks. sourcesJar {
8181 // This is necessary to keep gradle from barking at you
8282 // about an implicit dependency between these two tasks.
8383 dependsOn tasks. compileJava
84+ dependsOn tasks. compileTestJava
85+ dependsOn tasks. generateTestProto
8486}
8587
8688// All it does is complain about generated code.
8789javadoc { options. addStringOption(' Xdoclint:none' , ' -quiet' ) }
8890
8991def grpcVersion = " 1.78.0"
90- def protocVersion = " 4.33.2 "
92+ def protocVersion = " 4.33.5 "
9193def authzedProtoCommit = " v1.45.4"
9294def bufDir = " ${ buildDir} /buf"
9395def protocPlatformTag = project. findProperty(' protoc_platform' ) ? " :${ protoc_platform} " : " "
@@ -129,7 +131,7 @@ dependencies {
129131 exclude group : ' com.google.protobuf' , module : ' protobuf-java'
130132 exclude group : ' com.google.code.gson' , module : ' gson'
131133 }
132- implementation(" com.google.api.grpc:proto-google-common-protos:2.63.2 " ) {
134+ implementation(" com.google.api.grpc:proto-google-common-protos:2.65.0 " ) {
133135 exclude group : ' com.google.protobuf' , module : ' protobuf-java'
134136 }
135137 implementation " com.google.code.gson:gson:2.13.2"
@@ -178,7 +180,7 @@ configurations {
178180// Test things
179181dependencies {
180182 intTestImplementation " junit:junit:4.13.2"
181- intTestImplementation " org.assertj:assertj-core:3.27.6 "
183+ intTestImplementation " org.assertj:assertj-core:3.27.7 "
182184}
183185
184186tasks. register(' integrationTest' , Test ) {
0 commit comments