2

Spring3.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>

ただし、スプリングコアが見つからない場合。

[警告]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が見つかりませんでした:3.0.5-com.springsource.repository.bundles.release(http://repository.springsource.com/maven/bundles/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 に答える