update protobuf

GitOrigin-RevId: 9a6614e55b247fa9624782d11925934be673296d
This commit is contained in:
Vladimir Krivosheev
2023-07-11 10:31:43 +02:00
committed by intellij-monorepo-bot
parent 2a79eeb973
commit d2f19c171f
5 changed files with 11 additions and 11 deletions

View File

@@ -1,18 +1,18 @@
<component name="libraryTable">
<library name="protobuf" type="repository">
<properties include-transitive-deps="false" maven-id="com.google.protobuf:protobuf-java:3.19.6">
<properties include-transitive-deps="false" jar-repository-id="central-proxy" maven-id="com.google.protobuf:protobuf-java:3.23.4">
<verification>
<artifact url="file://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar">
<sha256sum>6a9a2dff91dcf71f85be71ae971f6164b5a631dcd34bff08f0618535ca44ad02</sha256sum>
<artifact url="file://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.23.4/protobuf-java-3.23.4.jar">
<sha256sum>2fc98a20224d88c8c3dd9a403a8c3930ce0e275aa847ad3734fcbb2db012498b</sha256sum>
</artifact>
</verification>
</properties>
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.23.4/protobuf-java-3.23.4.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.19.6/protobuf-java-3.19.6-sources.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/com/google/protobuf/protobuf-java/3.23.4/protobuf-java-3.23.4-sources.jar!/" />
</SOURCES>
</library>
</component>

View File

@@ -5,7 +5,7 @@
:: @echo on
@echo off
if not defined PROTOC_VERSION set PROTOC_VERSION=3.19.6
if not defined PROTOC_VERSION set PROTOC_VERSION=3.23.4
if not defined PROTOC_BIN_DIR (
for /f %%i in ('git.exe rev-parse --show-toplevel') do set "toplevel=%%~fi"

View File

@@ -1,7 +1,7 @@
# Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
# Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
# Usage: . "$(git rev-parse --show-toplevel)/build/protobuf/getprotoc.sh"
PROTOC_VERSION=${PROTOC_VERSION:-3.19.6}
PROTOC_VERSION=${PROTOC_VERSION:-3.23.4}
PROTOC_BIN_DIR="${PROTOC_BIN_DIR:-$(git rev-parse --show-toplevel)/build/protobuf/bin}"
PROTOC_CACHE_DIR="${PROTOC_CACHE_DIR:-$(dirname "$PROTOC_BIN_DIR")/cache}"

View File

@@ -1,9 +1,9 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
import com.google.protobuf.gradle.*
val grpcVersion = "1.31.1"
val grpcKotlinVersion = "0.2.0" // CURRENT_GRPC_KOTLIN_VERSION
val protobufVersion = "3.19.6"
val protobufVersion = "3.23.4"
val coroutinesVersion = "1.3.8"
plugins {

View File

@@ -33,7 +33,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.19.6</version>
<version>3.23.4</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>