You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Guo Ruijing (JIRA)" <ji...@apache.org> on 2014/03/05 10:30:43 UTC

[jira] [Created] (HBASE-10681) Allow Hbase artifacts to deploy to remote repo other than apache

Guo Ruijing created HBASE-10681:
-----------------------------------

             Summary: Allow Hbase artifacts to deploy to remote repo other than apache
                 Key: HBASE-10681
                 URL: https://issues.apache.org/jira/browse/HBASE-10681
             Project: HBase
          Issue Type: Improvement
          Components: build
            Reporter: Guo Ruijing


pom.xml in hbase write as

 <distributionManagement>
    <site>
      <id>hbase.apache.org</id>
      <name>HBase Website at hbase.apache.org</name>
      <!-- On why this is the tmp dir and not hbase.apache.org, see
               https://issues.apache.org/jira/browse/HBASE-7593?focusedCommentId=13555866&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13555866
               -->
      <url>file:///tmp</url>
    </site>

We expect pom.xml in hbase like hadoop can be:

 <distributionManagement>
  <repository>
      <id>${distMgmtStagingId}</id>
      <name>${distMgmtStagingName}</name>
      <url>${distMgmtStagingUrl}</url>
    </repository>
    <snapshotRepository>
      <id>${distMgmtSnapshotsId}</id>
      <name>${distMgmtSnapshotsName}</name>
      <url>${distMgmtSnapshotsUrl}</url>
    </snapshotRepository>
    <site>
      <id>hbase.apache.org</id>
      <name>HBase Website at hbase.apache.org</name>
      <!-- On why this is the tmp dir and not hbase.apache.org, see
               https://issues.apache.org/jira/browse/HBASE-7593?focusedCommentId=13555866&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13555866
               -->
      <url>file:///tmp</url>
    </site>
  </distributionManagement>




--
This message was sent by Atlassian JIRA
(v6.2#6252)