Failed to execute goal org.apache.maven.plugins

用Maven部署打包安装的时候,即执行mvn clean install -DskipTests的时候,

出现类似下面的异常:

Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:XX ,An Ant BuildException has occured Warning: Could not find file ….

 

项目中具体的异常信息为:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:
run (default) on project cms-core: An Ant BuildException has occured: Warning: C
ould not find file c:\Users\swang6\tools-workspace\cms-sync\Java-sync\NetDB_TMA_
DNS_Sync\cms-core\src\main\resources\${config.lookup.name} to copy. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

 

可能的原因: 有可能你在使用的版本是maven3.X,其执行maven-ant-plugin的行为和maven2.x有一定的不同,需要引入pluginManagement

 

解决办法是:在pom.xml中引入:<pluginManagement></pluginManagement>

 

之前的内容:

<build>
<plugins>

<plugin></plugin>

<plugin></plugin>

</plugins>

</build>

修改后的内容:

<build>

<pluginManagement>

<plugins>

<plugin></plugin>

<plugin></plugin>

</plugins>

</pluginManagement>
</build>


转载于:https://my.oschina.net/u/1272080/blog/374683

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值