I'm want to try out spring-test-mvc and according to the project github web site this is the proper maven dependency URL and dependency set up:
"You can get it from the Spring Maven Snapshot repository: http://maven.springframework.org/snapshot"
Code:
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-test-mvc</artifactId>
  <version>1.0.0.BUILD-SNAPSHOT</version>
</dependency
I added the snapshot to my repositories in pom.xml as
Code:
<repository>
            <id>spring-maven-milestone</id>
            <name>Spring Maven Milestone Repository</name>
            <url>http://maven.springframework.org/milestone</url>
        </repository>
And tried to get spring-test-mvc into my project, but nothing happens. Are there currently any alternative snapshot URLs? Or what else could be wrong with this set up?