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/12/04 23:56:11 UTC

kudu git commit: kudu-hive: skip publishing artifact

Repository: kudu
Updated Branches:
  refs/heads/master d42c29164 -> 84d019e61


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


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

Branch: refs/heads/master
Commit: 84d019e611abc643e9138d6d0f9726a131643367
Parents: d42c291
Author: Dan Burkert <da...@apache.org>
Authored: Mon Dec 4 15:28:30 2017 -0800
Committer: Dan Burkert <da...@apache.org>
Committed: Mon Dec 4 23:56:00 2017 +0000

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


http://git-wip-us.apache.org/repos/asf/kudu/blob/84d019e6/java/kudu-hive/pom.xml
----------------------------------------------------------------------
diff --git a/java/kudu-hive/pom.xml b/java/kudu-hive/pom.xml
index 8cd6f47..2ebdbea 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>