<repository>
<id>spring-maven-snapshot</id>
<name>Spring Maven Snapshot Repository</name>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>http://maven.springframework.org/snapshot</url>
</repository>
When i tried to replace with/add following one, it gives me other errors,
<repository> <id>spring-snapshot</id> <name>Spring Maven SNAPSHOT Repository</name> <url>http://repo.springsource.org/libs-snapshot</url> </repository>
Other errors:Could not resolve dependencies for project org.netvogue.server:netvogue-database-api:jar:1.0-SNAPSHOT: Could not transfer artifact org.apache.httpcomponents:httpclient:jar:4.2-beta1 from/to spring-snapshot (http://repo.springsource.org/libs-snapshot): Access denied to: http://repo.springsource.org/libs-snapshot/org/apache/httpcomponents/httpclient/4.2-beta1/httpclient-4.2-beta1.jar -> [Help 1]
--
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
However, it still gives me same error. Also, its not checking the maven central repository which must be enabled by default. Am i missing something here?
--