Some problems were encountered while building the effective model for...Maven出现该警告解决方法
Some problems were encountered while building the effective model for com.zz.springcloud:cloud:pom:1.0-SNAPSHOT'build.plugins.plugin.version' for org.springframework.boot:spring-boot-maven-plugin is m
·
Some problems were encountered while building the effective model for cn.itcast:travel:war:1.0-SNAPSHOT
'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 121, column 21
It is highly recommended to fix these problems because they threaten the stability of your build.
For this reason, future Maven versions might no longer support building such malformed projects.
我这两天开始学习maven,结果发现只有启动,左边一直run个不停不说,完了还出现这种错误,搜了好久,才解决了。原因是f依赖xml配置不全,我是忘记写version
pom.xml配置
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.9</source>
<target>1.9</target>
<encoding>utf-8</encoding>
</configuration>
</plugin>
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)