论坛首页 综合技术论坛

Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.3:XX

浏览 12527 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2013-06-19  

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

出现类似下面的异常:

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

 

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

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.3:
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>

 

论坛首页 综合技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics