You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by jd...@apache.org on 2017/12/08 03:50:30 UTC

[1/2] kudu git commit: java: re-revisit maven shade configuration

Repository: kudu
Updated Branches:
  refs/heads/branch-1.6.x 7e28dfc72 -> 988621b14


java: re-revisit maven shade configuration

I introduced a bug in the previous iteration of this patch[1].
kudu-spark-tools uber-jar should include the kudu-client-tools classes,
since the Spark ITBLL job relies on the BigLinkedListCommon class.

[1]: 68fa8010dddad81dd702c6f05fda7d561d9beef9

Change-Id: Ia091aa2167178fe0b553086db3e08769028670ce
Reviewed-on: http://gerrit.cloudera.org:8080/8792
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>
Tested-by: Kudu Jenkins
(cherry picked from commit 6549a417b69747d1ef8472568e32026e0d96e464)
Reviewed-on: http://gerrit.cloudera.org:8080/8793


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

Branch: refs/heads/branch-1.6.x
Commit: 1f30ee08337d6821d9f10ea26f40d62b309e1751
Parents: 7e28dfc
Author: Dan Burkert <da...@apache.org>
Authored: Thu Dec 7 15:57:47 2017 -0800
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Fri Dec 8 03:49:04 2017 +0000

----------------------------------------------------------------------
 java/kudu-spark-tools/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/1f30ee08/java/kudu-spark-tools/pom.xml
----------------------------------------------------------------------
diff --git a/java/kudu-spark-tools/pom.xml b/java/kudu-spark-tools/pom.xml
index 63f707f..b836f7d 100644
--- a/java/kudu-spark-tools/pom.xml
+++ b/java/kudu-spark-tools/pom.xml
@@ -180,6 +180,7 @@
                     <artifactSet>
                         <includes>
                             <include>org.apache.kudu:kudu-client</include>
+                            <include>org.apache.kudu:kudu-client-tools</include>
                             <include>org.apache.kudu:kudu-${spark.version.label}_${scala.binary.version}</include>
                             <include>org.apache.yetus:audience-annotations</include>
                             <include>com.databricks:spark-avro_${scala.binary.version}</include>


[2/2] kudu git commit: kudu-hive: skip publishing artifact

Posted by jd...@apache.org.
kudu-hive: skip publishing artifact

kudu-hive is experimental, so we should avoid publishing jars which
people could begin to rely on.

Change-Id: Ic3417f1c8b39e3ce501f4a785faeadac59dd84c4
Reviewed-on: http://gerrit.cloudera.org:8080/8756
Reviewed-by: Mike Percy <mp...@apache.org>
Tested-by: Kudu Jenkins
(cherry picked from commit 84d019e611abc643e9138d6d0f9726a131643367)
Reviewed-on: http://gerrit.cloudera.org:8080/8794
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>


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

Branch: refs/heads/branch-1.6.x
Commit: 988621b148a6e17f5a40033adb77b8ed15c77e01
Parents: 1f30ee0
Author: Dan Burkert <da...@apache.org>
Authored: Mon Dec 4 15:28:30 2017 -0800
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Fri Dec 8 03:50:04 2017 +0000

----------------------------------------------------------------------
 java/kudu-hive/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/988621b1/java/kudu-hive/pom.xml
----------------------------------------------------------------------
diff --git a/java/kudu-hive/pom.xml b/java/kudu-hive/pom.xml
index f6a933a..5d90298 100644
--- a/java/kudu-hive/pom.xml
+++ b/java/kudu-hive/pom.xml
@@ -105,6 +105,14 @@
                     </systemPropertyVariables>
                 </configuration>
             </plugin>
+            <plugin>
+                <!-- Skip publishing kudu-hive until it's ready to be supported long-term. -->
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>