You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by zi...@apache.org on 2018/10/05 11:25:06 UTC

[parquet-format] branch master updated: PARQUET-1433: Parquet-format doesn't compile with Thrift 0.10.0 (#111)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b475182  PARQUET-1433: Parquet-format doesn't compile with Thrift 0.10.0 (#111)
b475182 is described below

commit b4751820a9e99d531be80fa8c161c7a1c6f2204a
Author: nandorKollar <na...@users.noreply.github.com>
AuthorDate: Fri Oct 5 13:24:57 2018 +0200

    PARQUET-1433: Parquet-format doesn't compile with Thrift 0.10.0 (#111)
---
 pom.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9fbdaf1..26a27bf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,15 +88,16 @@
     <shade.prefix>shaded.parquet</shade.prefix>
     <thrift.executable>thrift</thrift.executable>
     <thrift.version>0.9.3</thrift.version>
+    <thrift-maven-plugin.version>0.10.0</thrift-maven-plugin.version>
   </properties>
 
   <build>
     <plugins>
       <!-- thrift -->
       <plugin>
-        <groupId>org.apache.thrift.tools</groupId>
-        <artifactId>maven-thrift-plugin</artifactId>
-        <version>0.1.11</version>
+        <groupId>org.apache.thrift</groupId>
+        <artifactId>thrift-maven-plugin</artifactId>
+        <version>${thrift-maven-plugin.version}</version>
         <configuration>
           <thriftSourceRoot>src/main/thrift</thriftSourceRoot>
           <thriftExecutable>${thrift.executable}</thriftExecutable>