You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/04/06 01:22:49 UTC

[2/2] kudu git commit: kudu-spark: move module into spark profiles

kudu-spark: move module into spark profiles

Otherwise maven complains about missing definitions of spark properties when
a non-Spark profile is activated (i.e. "mvn -Pjepsen package").

Change-Id: I79ae7b5f82fcdc996fcb48239935fc032b4789d4
Reviewed-on: http://gerrit.cloudera.org:8080/6564
Tested-by: Kudu Jenkins
Reviewed-by: Dan Burkert <da...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/eca51710
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/eca51710
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/eca51710

Branch: refs/heads/master
Commit: eca51710825b49175a7da324485e0d3fa1f255aa
Parents: a3362ee
Author: Adar Dembo <ad...@cloudera.com>
Authored: Wed Apr 5 16:03:46 2017 -0700
Committer: Dan Burkert <da...@apache.org>
Committed: Thu Apr 6 01:22:21 2017 +0000

----------------------------------------------------------------------
 java/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/eca51710/java/pom.xml
----------------------------------------------------------------------
diff --git a/java/pom.xml b/java/pom.xml
index 403f185..bc0c46d 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -90,7 +90,6 @@
         <module>kudu-client</module>
         <module>kudu-client-tools</module>
         <module>kudu-mapreduce</module>
-        <module>kudu-spark</module>
         <module>kudu-flume-sink</module>
     </modules>
 
@@ -333,6 +332,8 @@
                 <kudu-spark.compat.src>src/main/spark2</kudu-spark.compat.src>
             </properties>
             <modules>
+                <module>kudu-spark</module>
+
                 <!-- kudu-spark-tools is only compatible with Spark2 -->
                 <module>kudu-spark-tools</module>
             </modules>
@@ -346,6 +347,9 @@
                 <scala.binary.version>2.10</scala.binary.version>
                 <kudu-spark.compat.src>src/main/spark1</kudu-spark.compat.src>
             </properties>
+            <modules>
+                <module>kudu-spark</module>
+            </modules>
         </profile>
     </profiles>
 </project>