Failed to execute goal org.apache.maven.plugins

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

出现相似下面的异常:maven

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

 

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

[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/MojoExecutionExceptiondebug

 

可能的缘由: 有可能你在使用的版本是maven3.X,其执行maven-ant-plugin的行为和maven2.x有必定的不一样,须要引入pluginManagementorm

 

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

 

以前的内容:ip

<build>
<plugins>部署

<plugin></plugin>get

<plugin></plugin>

</plugins>

</build>

修改后的内容:

<build>

<pluginManagement>

<plugins>

<plugin></plugin>

<plugin></plugin>

</plugins>

</pluginManagement></build>