Declare protoc version in proto module

This commit is contained in:
Alva Swanson 2023-07-02 18:29:17 +02:00
parent 4cf54cd5e0
commit d9056fa2be
No known key found for this signature in database
GPG key ID: 004760E77F753090
2 changed files with 1 additions and 2 deletions

View file

@ -28,7 +28,6 @@ configure(subprojects) {
ext { // in alphabetical order
grpcVersion = '1.42.1'
javafxVersion = '16'
protocVersion = '3.19.1'
os = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os
}

View file

@ -30,7 +30,7 @@ sourceSets.main.java.srcDirs += [
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:${protocVersion}"
artifact = "com.google.protobuf:protoc:3.19.1"
}
plugins {
grpc {