2

我正在尝试使用 Maven 配置 Spring 3.0。我读过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>

但是,如果他没有找到弹簧芯。

[警告] org.springframework:org.springframework.core:jar:3.0.5-RELEASE 的 POM 缺失,没有可用的依赖信息

[错误] 无法在项目 spring-recipes 上执行目标:无法解析项目 org.obliquid:spring-recipes:war:0.0.1-SNAPSHOT 的依赖项:找不到工件 org.springframework:org.springframework.core:jar com.springsource.repository.bundles.release (http://repository.springsource.com/maven/bundles/release) 中的 3.0.5-RELEASE -> [帮助 1]

我能做些什么来解决这个问题?

4

1 回答 1

2

它应该是

<org.springframework.version>3.0.5.RELEASE</org.springframework.version>

代替

<org.springframework.version>3.0.5-RELEASE</org.springframework.version>
于 2011-07-08T18:11:41.210 回答