用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>