Я пытаюсь настроить Spring 3.0 с Maven.Я прочитал http://blog.springsource.com/2009/12/02/obtaining-spring-3-artifacts-with-maven/
В моем pom.xml я определил следующие репозитории:
<repositories>
<repository>
<id>com.springsource.repository.bundles.release</id>
<name>EBR Spring Release Repository</name>
<url>http://repository.springsource.com/maven/bundles/release</url>
</repository>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>EBR External Release Repository</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
</repositories>
Затем я попытался с самой основной зависимостью:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.core</artifactId>
<version>${org.springframework.version}</version>
</dependency>
где
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.springframework.version>3.0.5-RELEASE</org.springframework.version>
</properties>
Однако, если пружинное ядро не найдено.
[ПРЕДУПРЕЖДЕНИЕ] POM для org.springframework: org.springframework.core: jar: 3.0.5-RELEASE отсутствует, информация о зависимостях недоступна
[ОШИБКА] Не удалось выполнить цель по весенним рецептам проекта: не удалось разрешить зависимости для проекта org.obliquid: spring-recipes: war: 0.0.1-SNAPSHOT: Не удалось найти артефакт org.springframework: org.springframework.core: jar: 3.0.5-RELEASE в com.springsource.repository.bundles.release (http://repository.springsource.com/maven/bundles/release) -> [Help 1]
Что можетЯ делаю, чтобы решить проблему?