Author: travis
Date: Wed Sep 19 00:19:09 2012
New Revision: 1387412
URL: http://svn.apache.org/viewvc?rev=1387412&view=rev
Log:
HCATALOG-502 HCatalog dependency resolution fails due to missing repo
Modified:
incubator/hcatalog/trunk/CHANGES.txt
incubator/hcatalog/trunk/pom.xml
Modified: incubator/hcatalog/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1387412&r1=1387411&r2=1387412&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Wed Sep 19 00:19:09 2012
@@ -109,6 +109,8 @@ Trunk (unreleased changes)
OPTIMIZATIONS
BUG FIXES
+ HCAT-502 HCatalog dependency resolution fails due to missing repo
(traviscrawford)
+
HCAT-490 HCatStorer() throws error when the same partition key is present in
records in more than one tasks running as part of the same job (amalakar via
traviscrawford)
HCAT-499 Multiple store commands does not work with Hadoop23 (rohinip via
avandana)
Modified: incubator/hcatalog/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/pom.xml?rev=1387412&r1=1387411&r2=1387412&view=diff
==============================================================================
--- incubator/hcatalog/trunk/pom.xml (original)
+++ incubator/hcatalog/trunk/pom.xml Wed Sep 19 00:19:09 2012
@@ -51,6 +51,21 @@
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
+
+ <!-- A transitive dependency defines this repo in its pom, however, the
repo
+ has moved and causes dependency resolutions for 'asm:asm:pom:3.1'. Here
we
+ disable the repo as we prefer to use central anyway. -->
+ <repository>
+ <id>glassfish-repository</id>
+ <url>http://maven.glassfish.org/content/groups/glassfish</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+
</repositories>
</project>