org.apache.maven.plugins:maven-site-plugin:3.3报错

在这里插入图片描述
在pom.xml文件中加入以下代码就可以解决

  <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

发布了59 篇原创文章 · 获赞 12 · 访问量 2247

猜你喜欢

转载自blog.csdn.net/qq_41219586/article/details/104566432
今日推荐