You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by kt...@apache.org on 2016/09/06 19:16:42 UTC

[2/3] incubator-fluo-recipes git commit: Made thrift version configurable.

Made thrift version configurable.

Needed to do this to test building against Accumulo 1.8.0 which used thrift 0.9.3.


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/commit/4036b026
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/tree/4036b026
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/diff/4036b026

Branch: refs/heads/master
Commit: 4036b0267ae7d3942d013ebdecf15f3457c2f8c2
Parents: 2aed08d
Author: Keith Turner <kt...@apache.org>
Authored: Fri Sep 2 17:47:54 2016 -0400
Committer: Keith Turner <kt...@apache.org>
Committed: Fri Sep 2 17:47:54 2016 -0400

----------------------------------------------------------------------
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/4036b026/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a55dfc5..744296e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,6 +59,7 @@
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>
     <spark.version>1.5.2</spark.version>
+    <thrift.version>0.9.1</thrift.version>
     <zookeeper.version>3.4.8</zookeeper.version>
   </properties>
   <dependencyManagement>
@@ -194,6 +195,11 @@
         <version>${spark.version}</version>
       </dependency>
       <dependency>
+        <groupId>org.apache.thrift</groupId>
+        <artifactId>libthrift</artifactId>
+        <version>${thrift.version}</version>
+      </dependency>
+      <dependency>
         <groupId>org.apache.zookeeper</groupId>
         <artifactId>zookeeper</artifactId>
         <version>${zookeeper.version}</version>