我不知道这意味着什么:
我在pom.xml
。
<dependencies>
<!-- https://mvnrepository.com/artifact/xwork/xwork -->
<dependency>
<groupId>xwork</groupId>
<artifactId>xwork</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
但是你可以在图片中看到xwork
库下面有红色波浪线。
我尝试过使用:
clean - install
但这对我不起作用。有谁知道是什么原因造成的,我该如何解决?
答案 0 :(得分:3)
此依赖项由第三方存储库提供,您需要将以下内容添加到pom.xml
:
<repositories>
<repository>
<id>xwork</id>
<url>https://maven.atlassian.com/3rdparty/</url>
</repository>
</repositories>
然后在IntelliJ IDEA中重新导入项目(您可能还需要再次关闭并打开项目),然后验证外部库>> 项目视图中的依赖关系 node:
Maven项目工具窗口中也没有更多错误:
如果它仍然不起作用,refer to this answer用于诊断。