HBASE-1933 Upload Hbase jars to a public maven repository

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@933448 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-04-12 23:50:51 +00:00
parent ab55ce3b55
commit adbb2c58f8
2 changed files with 38 additions and 9 deletions

View File

@ -499,6 +499,8 @@ Release 0.21.0 - Unreleased
"important configurations more visiable"
HBASE-2435 HTablePool - method to release resources after use
(Kay Kay via Stack)
HBASE-1933 Upload Hbase jars to a public maven repository
(Kay Kay via Stack)
NEW FEATURES
HBASE-1961 HBase EC2 scripts

37
pom.xml
View File

@ -331,16 +331,43 @@
</dependencies>
</dependencyManagement>
<!--
To publish, use the following settings.xml file ( placed in ~/.m2/settings.xml )
<settings>
<servers>
<server>
<id>apache.releases.https</id>
<username>hbase_committer</username>
<password>********</password>
</server>
<server>
<id>apache.snapshots.https</id>
<username>hbase_committer</username>
<password>********</password>
</server>
</servers>
</settings>
$ mvn deploy
(or)
$ mvn -s /my/path/settings.xml deploy
-->
<distributionManagement>
<repository>
<id>Apache Public Releases</id>
<url>scp://people.apache.org/home/psmith/public_html/hbase/repo/</url>
<id>apache.releases.https</id>
<name>Apache Release Distribution Repository</name>
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>Apache Public Snapshots</id>
<name>Aconex Snapshots</name>
<url>scp://people.apache.org/home/psmith/public_html/hbase/repo-snapshots/</url>
<id>apache.snapshots.https</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
</snapshotRepository>
<!-- Private Site Repository -->
<site>
<id>HBase Site</id>
<url>scp://people.apache.org/home/psmith/public_html/hbase/sandbox/hbase/</url>