You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by ga...@apache.org on 2021/03/16 09:26:12 UTC

[parquet-mr] branch master updated: PARQUET-1493: Fix protobuf plugin for proxies (#875)

This is an automated email from the ASF dual-hosted git repository.

gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 0efbfaa  PARQUET-1493: Fix protobuf plugin for proxies (#875)
0efbfaa is described below

commit 0efbfaa9a7b02bbd2a5912313ca77a9550da8ea1
Author: Gabor Szadovszky <ga...@apache.org>
AuthorDate: Tue Mar 16 10:26:01 2021 +0100

    PARQUET-1493: Fix protobuf plugin for proxies (#875)
---
 parquet-protobuf/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/parquet-protobuf/pom.xml b/parquet-protobuf/pom.xml
index 210ec70..93bfb5b 100644
--- a/parquet-protobuf/pom.xml
+++ b/parquet-protobuf/pom.xml
@@ -152,7 +152,7 @@
       <plugin>
         <groupId>com.github.os72</groupId>
         <artifactId>protoc-jar-maven-plugin</artifactId>
-        <version>3.8.0</version>
+        <version>3.11.4</version>
         <executions>
           <execution>
             <id>generate-sources</id>
@@ -161,7 +161,7 @@
               <goal>run</goal>
             </goals>
             <configuration>
-              <protocVersion>${protobuf.version}</protocVersion>
+              <protocArtifact>com.google.protobuf:protoc:${protobuf.version}</protocArtifact>
               <addSources>test</addSources>
               <addProtoSources>all</addProtoSources>
               <outputDirectory>${project.build.directory}/generated-test-sources/java</outputDirectory>