Maven 构建镜像报错 Caused by: org.apache.maven.plugin.MojoFailureException: You are using ‘tasks‘ which ha
原因有两个 第一就是日志中提示的 maven maven-antrun-plugin 版本 必须升至3.0.0 版本;插件 让maven 走默认系统版本 去掉项目版本影响 maven 现象 解决问题。1.通过jenkins 构建项目时候构建镜像报错。第二就是 在pom 文件里直接去掉。
·
1.通过jenkins 构建项目时候 构建镜像报错
Caused by: org.apache.maven.plugin.MojoFailureException: You are using 'tasks' which has been removed from the maven-antrun-plugin. Please use 'target' and refer to the >>Major Version Upgrade to version 3.0.0<< on the plugin site
原因有两个 第一就是日志中提示的 maven maven-antrun-plugin 版本 必须升至3.0.0 版本;
第二就是 在pom 文件里直接去掉
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> </plugin>
插件 让maven 走默认系统版本 去掉项目版本影响 maven 现象 解决问题
更多推荐
已为社区贡献1条内容
所有评论(0)