Could not transfer artifact org.apache.maven.surefire:surefire-junit4:pom:2.12.4 from/to central
2021/12/28 23:14:59
本文主要是介绍Could not transfer artifact org.apache.maven.surefire:surefire-junit4:pom:2.12.4 from/to central,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Maven项目,没有增加单元测试依赖前,可以打包安装
添加测试依赖后
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies>
报错:Could not transfer artifact org.apache.maven.surefire:surefire-junit4:pom:2.12.4 from/to central
添加编译插件,刷新Maven,即可解决问题
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build>
这篇关于Could not transfer artifact org.apache.maven.surefire:surefire-junit4:pom:2.12.4 from/to central的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器
- 2025-01-01使用 SVN合并操作时,怎么解决冲突的情况?-icode9专业技术文章分享
- 2025-01-01告别Anaconda?试试这些替代品吧