gpt4 book ai didi

java - MAVEN 构建失败 - 无法解决项目 XYZ 的依赖关系

转载 作者:太空宇宙 更新时间:2023-11-04 14:23:10 24 4
gpt4 key购买 nike

我正在集成 jersey 和 spring,我有以下依赖项,但由于以下错误而无法构建:

我的 POM 文件:

<dependencies>

<!-- Jersey -->
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.8</version>
</dependency>

<!-- Spring 3 dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>

<!-- Jersey + Spring -->
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-spring</artifactId>
<version>1.8</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
</exclusions>
</dependency>

</dependencies>

控制台屏幕显示:

无法在项目 SpringRestMavenCalc 上执行目标:无法解析项目的依赖项 SpringRestMavenCalc:SpringRestMavenCalc:war:0.0.1-SNAPSHOT:无法收集 [com.sun.jersey:jersey-server:jar:1.8(编译)、org.springframework:spring-core:jar:3.0.5.RELEASE(编译)、org.springframe 的依赖项work:spring-context:jar:3.0.5.RELEASE (编译), org.springframework:spring-web:jar:3.0.5.RELEASE (编译), com.sun.jersey.contribs:jersey-spring:jar:1.8 (编译)]: 指定范围内没有可用于 org.springframework:spring-aop:jar:[2.5.2,3) 的版本 -> [帮助1]

这个版本有问题吗?

最佳答案

尝试使用以下内容为 spring-aop 添加 Maven 依赖项:

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>2.5.2</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>

我想其中之一应该有效

关于java - MAVEN 构建失败 - 无法解决项目 XYZ 的依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26966862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com