From 7012ffafad8fa876aa8bcb0b848445eec6734ef1 Mon Sep 17 00:00:00 2001
From: witgo <witgo@qq.com>
Date: Sun, 6 Apr 2014 16:03:06 -0700
Subject: [PATCH] Fix SPARK-1420 The maven build error for Spark Catalyst

Author: witgo <witgo@qq.com>

Closes #333 from witgo/SPARK-1420 and squashes the following commits:

902519e [witgo] add dependency scala-reflect to catalyst
---
 sql/catalyst/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sql/catalyst/pom.xml b/sql/catalyst/pom.xml
index 0edce55a93..9d5c6a857b 100644
--- a/sql/catalyst/pom.xml
+++ b/sql/catalyst/pom.xml
@@ -44,6 +44,10 @@
     </profiles>
 
     <dependencies>
+        <dependency>
+            <groupId>org.scala-lang</groupId>
+            <artifactId>scala-reflect</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.spark</groupId>
             <artifactId>spark-core_${scala.binary.version}</artifactId>
-- 
GitLab