0

我正在尝试导入 Spring Batch Samples。我已经添加了 Spring Web 站点上所述的所有 Maven groupids/artifacts/version...但是我无法构建项目。我搜索了 Jarfinder 试图找到所有的导入,但 POM 仍然存在这个问题。因为它是在我添加 Maven 时为我生成的,所以我不知道该怎么做。谢谢。

我得到错误:

不可解析的父 POM:未能在 repo1.maven.org/maven2 中找到 org.springframework.batch:org.springframework.batch.parent:2.0.0.RELEASE 已缓存在本地存储库中,直到更新完成后才会尝试解析强制和 'parent.relative.PATH' 指向错误的 POM。

我正在使用 SpringSource 工具套件。

这是显示错误的代码。

<parent>
    <groupId>org.springframework.batch</groupId>
    <artifactId>org.springframework.batch.parent</artifactId>
    <version>2.0.0.RELEASE</version>
    <relativePath>../spring-batch-parent</relativePath>
</parent>
4

1 回答 1

1

我认为这artifactId org.springframework.batch.parent是错误的,应该替换为spring-batch-parent(参见 maven 存储库,例如:http ://search.maven.org/#browse|301637886 )

于 2013-01-31T20:42:34.600 回答