From db9dd488a203c342b509d2d4abed9bb6fbebcbd3 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Mon, 24 Apr 2023 10:57:08 +0200 Subject: [PATCH] build.gradle: revert "update protobuf-gradle-plugin to 0.9.1" This reverts commit 3c2d199ac6f279769bdaf4123ff965ac431aab7a. It isn't compatible with our Gradle 7.x-based CI builds. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 47ab1af53..d4fcd79ef 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { } // If using Gradle 7, use the compatible protobuf plugin, else use the one that works with oldest supported Gradle boolean isGradle7 = GradleVersion.current().compareTo(GradleVersion.version("7.0")) >= 0 - def gradleProtobufVersion = isGradle7 ? "0.9.1" : "0.8.10" + def gradleProtobufVersion = isGradle7 ? "0.8.18" : "0.8.10" if (isGradle7) { System.err.println "Warning: Using com.google.protobuf:protobuf-gradle-plugin:${gradleProtobufVersion} because ${GradleVersion.current()}" }