jar для spring-test-mvc

Я пытаюсь получить банку для Spring-test mvc.

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-test-mvc</artifactId>
  <version>1.0.0.M1</version>
  <scope>test</scope>
</dependency>

Эта зависимость не может быть разрешена. Где взять баночку?

Спасибо


person pethel    schedule 27.09.2012    source источник
comment
mvnrepository.com/artifact/org.springframework/spring-webmvc/   -  person Prasad S Deshpande    schedule 27.09.2012
comment
@PrasadSDeshpande Думаю, это не то, что я ищу   -  person pethel    schedule 27.09.2012
comment
да неправильно понял.....   -  person Prasad S Deshpande    schedule 27.09.2012
comment
Подумайте о переходе на Spring 3.2 — github.com/SpringSource/spring-test-mvc   -  person Marcin Jancewicz    schedule 29.05.2013


Ответы (2)


Как указано в их репозитории Github, вы должны определить следующий репозиторий в своем pom.xml / settings.xml :

http://repo.springsource.org/libs-milestone/

Зависимость здесь:

http://repo.springsource.org/libs-milestone/org/springframework/spring-test-mvc/1.0.0.M1/

Обратите внимание, что существует версия 1.0.0.M2.

person Romain Linsolas    schedule 27.09.2012
comment
Есть ли что-то, что не является вехами? - person pethel; 27.09.2012

Начиная с версии 4.0.0.M1 он включен в весенний тест (см. https://jira.spring.io/browse/SEC-2015) См. пример использования по адресу https://github.com/rwinch/spring-security-test-blog (https://jira.spring.io/browse/SEC-2592)

person Grigory Kislin    schedule 14.05.2014