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:31 UTC

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

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>