gpt4 book ai didi

spring-boot - Intellij IDEA - Maven依赖问题

转载 作者:行者123 更新时间:2023-12-04 12:46:10 26 4
gpt4 key购买 nike

低于错误:

未能在项目 app-service 上执行目标:无法解析项目 com.test.api:app-service:jar:0.0.1-SNAPSHOT 的依赖项:无法在离线模式下访问中心 (https://repo.maven.apache.org/maven2) 和artifact com.sony.spe.rainbow:common:jar:1.0 之前没有下载过。

示例 pom.xml

<groupId>com.test.api</groupId>
<artifactId>app-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.test</groupId>
<artifactId>common</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

最佳答案

在 IntelliJ Idea 中有一个选项:

In the Maven tool window, click The Toggle Offline Mode button.

This will append the --offline option to all Maven commands thatIntelliJ IDEA runs. It will also report any items that cannot be foundin the local repository.

或者在 Maven settings.xml 中:

<offline>false</offline>

enter image description here

关于spring-boot - Intellij IDEA - Maven依赖问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47644593/

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