James Taylor created PHOENIX-2773:
-------------------------------------
Summary: Remove unnecessary repos in poms
Key: PHOENIX-2773
URL: https://issues.apache.org/jira/browse/PHOENIX-2773
Project: Phoenix
Issue Type: Bug
Reporter: James Taylor
Fix For: 4.8.0
It seems we have a lot of cruft in our pom in terms of repos. Now that sqlline
is hosted in maven central (see PHOENIX-2772), it seems like we should only
need the one repo
{{https://repository.apache.org/content/repositories/releases}}.
{code}
<repositories>
<repository>
<id>apache release</id>
<url>https://repository.apache.org/content/repositories/releases/</url>
</repository>
<repository>
<id>conjars.org</id>
<url>http://conjars.org/repo</url>
</repository>
<repository>
<id>apache snapshot</id>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)