Skip to content

Commit edf094d

Browse files
authored
Merge pull request #99 from authzed/bump-build-dep-versions
Bump protoc and gRPC versions for generated code
2 parents eb43b75 + 7e90445 commit edf094d

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

build.gradle

+12-4
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,25 @@ signing {
6666
sign publishing.publications.authzed
6767
}
6868

69-
sourceCompatibility = JavaVersion.VERSION_1_8
70-
targetCompatibility = JavaVersion.VERSION_1_8
7169

7270
java {
7371
withJavadocJar()
7472
withSourcesJar()
73+
sourceCompatibility = JavaVersion.VERSION_1_8
74+
targetCompatibility = JavaVersion.VERSION_1_8
75+
}
76+
77+
tasks.sourcesJar {
78+
// This is necessary to keep gradle from barking at you
79+
// about an implicit dependency between these two tasks.
80+
dependsOn tasks.compileJava
7581
}
7682

7783
// All it does is complain about generated code.
7884
javadoc { options.addStringOption('Xdoclint:none', '-quiet') }
7985

80-
def grpcVersion = "1.65.1"
81-
def protocVersion = "3.25.3"
86+
def grpcVersion = "1.66.0"
87+
def protocVersion = "4.27.4"
8288
def authzedProtoCommit = "v1.35.0"
8389
def bufDir = "${buildDir}/buf"
8490
def protocPlatformTag = project.findProperty('protoc_platform') ? ":${protoc_platform}" : ""
@@ -91,6 +97,7 @@ sourceSets { main {
9197

9298
dependencies {
9399
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
100+
implementation "com.google.protobuf:protobuf-java:${protocVersion}"
94101
implementation "io.grpc:grpc-stub:${grpcVersion}"
95102
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
96103
compileOnly "org.apache.tomcat:annotations-api:6.0.53"
@@ -139,6 +146,7 @@ configurations {
139146
intTestRuntimeOnly.extendsFrom runtimeOnly
140147
}
141148

149+
// Test things
142150
dependencies {
143151
intTestImplementation "junit:junit:4.13.2"
144152
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-rc-4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

src/main/java/com/authzed/grpcutil/BearerToken.java

-5
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,4 @@ public void applyRequestMetadata(RequestInfo requestInfo, Executor executor, Met
3232
}
3333
});
3434
}
35-
36-
@Override
37-
public void thisUsesUnstableApi() {
38-
// Intentionally empty
39-
}
4035
}

0 commit comments

Comments
 (0)