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

2023-12-20 02:43:15

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

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

<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>

添加之后
在这里插入图片描述

文章来源:https://blog.csdn.net/qq_37200262/article/details/135083436
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。