Skip to content

Commit

Permalink
updating protobuf modules (#34)
Browse files Browse the repository at this point in the history
* updating protobuf modules

    * Enables building code on M1 macs
    * Updated protobuf used in project

* updating version

---------

Co-authored-by: lavkesh <[email protected]>
  • Loading branch information
ankurs and lavkesh authored Nov 29, 2023
1 parent 01c6133 commit d3ad67b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.7"
classpath "org.ajoberstar:gradle-git:1.6.0"
}
Expand All @@ -14,25 +14,25 @@ plugins {
id 'idea'
id 'checkstyle'
id 'jacoco'
id "com.google.protobuf" version "0.8.17"
id "com.google.protobuf" version "0.9.4"
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}

group 'com.gotocompany'
version '0.7.4'
version '0.8.0'

repositories {
mavenLocal()
mavenCentral()
}

dependencies {
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.23.2'
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.25.0'
implementation group: 'com.datadoghq', name: 'java-dogstatsd-client', version: '2.13.0'
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.23.2'
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.25.0'
implementation group: 'com.gotocompany', name: 'stencil', version: '0.6.0' exclude group: 'org.slf4j'
implementation group: 'org.aeonbits.owner', name: 'owner', version: '1.0.9'
implementation (group: 'com.google.cloud', name: 'google-cloud-bigquerystorage', version: '2.39.1') {
Expand Down Expand Up @@ -106,11 +106,11 @@ targetCompatibility = JavaVersion.VERSION_1_8
protobuf {
generatedFilesBaseDir = "$projectDir/src/generated"
protoc {
artifact = "com.google.protobuf:protoc:3.1.0"
artifact = "com.google.protobuf:protoc:3.25.0"
}
plugins {
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:1.0.3"
artifact = "io.grpc:protoc-gen-grpc-java:1.59.0"
}
}
generateProtoTasks {
Expand Down Expand Up @@ -177,7 +177,7 @@ publishing {
}

signing {
sign publishing.publications.maven
sign publishing.publications.maven
}

nexusPublishing {
Expand Down

0 comments on commit d3ad67b

Please sign in to comment.