Unresolved plugin: ‘org.apache.maven.plugins‘解决报错

新建springboot项目报Unresolved plugin: 'org.apache.maven.plugins:maven-surefire-plugin:3.1.2'

缺什么插件 引入什么插件的依赖就行

bash 复制代码
<dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-install-plugin</artifactId>
            <version>your version</version>
            <type>maven-plugin</type>
        </dependency>
 
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-deploy-plugin</artifactId>
             <version>your version</version>
            <type>maven-plugin</type>
        </dependency>
 
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>your version</version>
            <type>maven-plugin</type>
        </dependency>
 
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
             <version>your version</version>
            <type>maven-plugin</type>
        </dependency>
 
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
             <version>your version</version>
            <type>maven-plugin</type>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-site-plugin</artifactId>
             <version>your version</version>
            <type>maven-plugin</type>
        </dependency>

添加之后

相关推荐
callJJ29 分钟前
Spring AI 文本聊天模型完全指南:ChatModel 与 ChatClient
java·大数据·人工智能·spring·spring ai·聊天模型
CBeann29 分钟前
企业级规则引擎落地实战:动态脚本引擎 QLExpress ,真香!
java·ai·大模型·规则引擎·qlexpress·大厂实战项目
懈尘30 分钟前
从 Java 1.7 到 Java 21:逐版本深入解析新特性与平台演进
java·开发语言
亓才孓30 分钟前
[Maven]Maven基础
java·maven
hello 早上好35 分钟前
05_Java 类加载过程
java·开发语言
echoVic1 小时前
多模型支持的架构设计:如何集成 10+ AI 模型
java·javascript
橙露1 小时前
Java并发编程进阶:线程池原理、参数配置与死锁避免实战
java·开发语言
echoVic1 小时前
AI Agent 安全权限设计:blade-code 的 5 种权限模式与三级控制
java·javascript
PPPPickup1 小时前
easymall---图片上传以及图片展示
java
历程里程碑1 小时前
Linux 库
java·linux·运维·服务器·数据结构·c++·算法