Andrew Liles created PHOENIX-913:
------------------------------------

             Summary: Central Maven repo is missing key artifact for 3.0 & 4.0
                 Key: PHOENIX-913
                 URL: https://issues.apache.org/jira/browse/PHOENIX-913
             Project: Phoenix
          Issue Type: Bug
    Affects Versions: 3.0.0, 4.0.0
            Reporter: Andrew Liles
            Priority: Minor


Symptom is that Maven seeks this jar:

https://repository.apache.org/content/repositories/releases/org/apache/phoenix/phoenix/3.0.0-incubating/phoenix-3.0.0-incubating.jar

To reproduce place the following pom.xml in a fresh directory; avoid any 
locally built repo and run "mvn compile".

Workaround: build from source yourself.
=====
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0";
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
    <modelVersion>4.0.0</modelVersion>
    <groupId>somegroup</groupId>
    <artifactId>tester</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <dependencies>
        <dependency>
            <groupId>org.apache.phoenix</groupId>
            <artifactId>phoenix</artifactId>
            <version>3.0.0-incubating</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
          <id>apache release</id>
          
<url>https://repository.apache.org/content/repositories/releases/</url>
        </repository>
    </repositories>    
</project>





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

Reply via email to