Skip to content

Commit d3ad67b

Browse files
ankurslavkesh
andauthored
updating protobuf modules (#34)
* updating protobuf modules * Enables building code on M1 macs * Updated protobuf used in project * updating version --------- Co-authored-by: lavkesh <[email protected]>
1 parent 01c6133 commit d3ad67b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
maven { url 'https://plugins.gradle.org/m2/' }
44
}
55
dependencies {
6-
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
6+
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
77
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.7"
88
classpath "org.ajoberstar:gradle-git:1.6.0"
99
}
@@ -14,25 +14,25 @@ plugins {
1414
id 'idea'
1515
id 'checkstyle'
1616
id 'jacoco'
17-
id "com.google.protobuf" version "0.8.17"
17+
id "com.google.protobuf" version "0.9.4"
1818
id 'io.franzbecker.gradle-lombok' version '5.0.0'
1919
id 'maven-publish'
2020
id 'signing'
2121
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
2222
}
2323

2424
group 'com.gotocompany'
25-
version '0.7.4'
25+
version '0.8.0'
2626

2727
repositories {
2828
mavenLocal()
2929
mavenCentral()
3030
}
3131

3232
dependencies {
33-
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.23.2'
33+
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.25.0'
3434
implementation group: 'com.datadoghq', name: 'java-dogstatsd-client', version: '2.13.0'
35-
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.23.2'
35+
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.25.0'
3636
implementation group: 'com.gotocompany', name: 'stencil', version: '0.6.0' exclude group: 'org.slf4j'
3737
implementation group: 'org.aeonbits.owner', name: 'owner', version: '1.0.9'
3838
implementation (group: 'com.google.cloud', name: 'google-cloud-bigquerystorage', version: '2.39.1') {
@@ -106,11 +106,11 @@ targetCompatibility = JavaVersion.VERSION_1_8
106106
protobuf {
107107
generatedFilesBaseDir = "$projectDir/src/generated"
108108
protoc {
109-
artifact = "com.google.protobuf:protoc:3.1.0"
109+
artifact = "com.google.protobuf:protoc:3.25.0"
110110
}
111111
plugins {
112112
grpc {
113-
artifact = "io.grpc:protoc-gen-grpc-java:1.0.3"
113+
artifact = "io.grpc:protoc-gen-grpc-java:1.59.0"
114114
}
115115
}
116116
generateProtoTasks {
@@ -177,7 +177,7 @@ publishing {
177177
}
178178

179179
signing {
180-
sign publishing.publications.maven
180+
sign publishing.publications.maven
181181
}
182182

183183
nexusPublishing {

0 commit comments

Comments
 (0)