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"
I added the snapshot to my repositories in pom.xml asCode:<dependency> <groupId>org.springframework</groupId> <artifactId>spring-test-mvc</artifactId> <version>1.0.0.BUILD-SNAPSHOT</version> </dependencyAnd 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?Code:<repository> <id>spring-maven-milestone</id> <name>Spring Maven Milestone Repository</name> <url>http://maven.springframework.org/milestone</url> </repository>


Reply With Quote
