我正在尝试构建一个使用的简单的webapp。我在检索webflow依赖项(我正在使用maven 3)时遇到了问题。
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-webflow</artifactId>
<version>2.3.0-RELEASE</version>
</dependency>当我运行一个mvn干净安装-X (从命令行),我得到以下.
未能在项目blah-webapp上执行目标:无法解决项目cnm3 3: blah-webapp: war:1.0快照的依赖关系:未能在本地存储库中缓存org.springframework.webflow:spring-webflow:jar:2.3.0-RELEASE,则在中心更新间隔过去或强制更新之前,不会重新尝试解决方案。
我可以看到在http://repo1.maven.org/maven2/org/springframework/webflow/spring-webflow/上有这些罐子
有人看到这个了吗?
发布于 2011-03-02 20:49:13
正确的版本值为2.3.0。
https://stackoverflow.com/questions/5172989
复制相似问题