@@ -66,19 +66,25 @@ signing {
66
66
sign publishing. publications. authzed
67
67
}
68
68
69
- sourceCompatibility = JavaVersion . VERSION_1_8
70
- targetCompatibility = JavaVersion . VERSION_1_8
71
69
72
70
java {
73
71
withJavadocJar()
74
72
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
75
81
}
76
82
77
83
// All it does is complain about generated code.
78
84
javadoc { options. addStringOption(' Xdoclint:none' , ' -quiet' ) }
79
85
80
- def grpcVersion = " 1.65.1 "
81
- def protocVersion = " 3.25.3 "
86
+ def grpcVersion = " 1.66.0 "
87
+ def protocVersion = " 4.27.4 "
82
88
def authzedProtoCommit = " v1.35.0"
83
89
def bufDir = " ${ buildDir} /buf"
84
90
def protocPlatformTag = project. findProperty(' protoc_platform' ) ? " :${ protoc_platform} " : " "
@@ -91,6 +97,7 @@ sourceSets { main {
91
97
92
98
dependencies {
93
99
implementation " io.grpc:grpc-protobuf:${ grpcVersion} "
100
+ implementation " com.google.protobuf:protobuf-java:${ protocVersion} "
94
101
implementation " io.grpc:grpc-stub:${ grpcVersion} "
95
102
runtimeOnly " io.grpc:grpc-netty-shaded:${ grpcVersion} "
96
103
compileOnly " org.apache.tomcat:annotations-api:6.0.53"
@@ -139,6 +146,7 @@ configurations {
139
146
intTestRuntimeOnly. extendsFrom runtimeOnly
140
147
}
141
148
149
+ // Test things
142
150
dependencies {
143
151
intTestImplementation " junit:junit:4.13.2"
144
152
}
0 commit comments