Skip to content

Commit

Permalink
Fix distro management
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Wills committed Feb 8, 2014
1 parent c880acb commit 394af09
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
18 changes: 13 additions & 5 deletions java/pom.xml
Expand Up @@ -23,14 +23,22 @@

<repositories>
<repository>
<id>maven-hadoop</id>
<name>Hadoop Releases</name>
<url>https://repository.cloudera.com/content/repositories/releases/</url>
<id>cloudera</id>
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>cloudera-local</id>
<name>Cloudera Local</name>
<name>Cloudera Snapshots</name>
<url>https://repository.cloudera.com/artifactory/libs-release-local/</url>
</repository>
</repositories>
</distributionManagement>
</project>
8 changes: 8 additions & 0 deletions pom.xml
Expand Up @@ -28,4 +28,12 @@
<compiler.plugin.version>2.3.2</compiler.plugin.version>
<assembly.plugin.version>2.2.1</assembly.plugin.version>
</properties>

<distributionManagement>
<repository>
<id>cloudera-local</id>
<name>Cloudera Snapshots</name>
<url>https://repository.cloudera.com/artifactory/libs-release-local/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 394af09

Please sign in to comment.