当前位置:   article > 正文

‘build.plugins.plugin.version‘ for org.springframework.boot:spring-boot-maven-plugin is missing_build.plugins.plugin.version' for org.springframew

build.plugins.plugin.version' for org.springframework.boot:spring-boot-mave

问题:
在这里插入图片描述
解决方案:给 spring-boot-maven-plugin 添加版本号,一般和SpringBoot构建版本号相同,如:

	<!-- SpringBoot 2.2.2 -->
    <dependencies>
    	<dependency>
        	<groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>2.2.2.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
	<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>2.2.2.RELEASE</version>
                <configuration>
                    <fork>true</fork>
                    <addResources>true</addResources>
                </configuration>
            </plugin>
        </plugins>
    </build>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/421880
推荐阅读
相关标签
  

闽ICP备14008679号