It seems that 
maven-metadata.xml.md5<https://repository.apache.org/content/groups/snapshots-group/org/apache/tapestry/tapestry-core/5.2.0-SNAPSHOT/maven-metadata.xml.md5>is
different
from
https://repository.apache.org/content/groups/public/org/apache/tapestry/tapestry-core/5.2.0-SNAPSHOT/
and
https://repository.apache.org/content/groups/public/org/apache/tapestry/tapestry-core/5.2.0-SNAPSHOT/

this was the cause of my eclipse problem i had to this in my pom.xml

        <repository>
            <id>apache</id>
            <url>http://repository.apache.org/</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>

        <repository>
            <id>apache-snapshots</id>
            <url>http://repository.apache.org/snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
        </repository>



-- 
Regards,
Christophe Cordenier.

Developer of wooki @wookicentral.com

Reply via email to