gpt4 book ai didi

java - 找不到 Artifact junit :unit:jar:5. 0-SNAPSHOT

转载 作者:行者123 更新时间:2023-12-02 01:33:41 25 4
gpt4 key购买 nike

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>5.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>

错误

Could not find artifact junit:junit:jar:5.0-SNAPSHOT -> [Help 1]

来自 IntelliJ 的屏幕截图

enter image description here

尝试:

  1. mvn clean 和 install 不起作用

  2. 文件 -> 清理缓存并重新启动不起作用

  3. 删除 .m2 目录不起作用。

最佳答案

如果您想使用 JUnit5,请使用以下依赖项 -

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.4.1</version>
<scope>test</scope>
</dependency>

并且,如果您想使用 JUnit4,请使用以下依赖项 -

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>

关于java - 找不到 Artifact junit :unit:jar:5. 0-SNAPSHOT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55577030/

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