Maven install报MojoExecutionException

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5:assembly (make-assembly) on project test: Failed to
create assembly: Error creating assembly archive jar-with-dependencies: Problem creating jar: invalid LOC header (bad signature) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[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 read the following articles:
 

  1. <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client -->
  2. <dependency>
  3.     <groupId>org.apache.hadoop</groupId>
  4.     <artifactId>hadoop-client</artifactId>
  5.     <version>2.7.3</version>
  6. </dependency>

在以上配置文件上添加:<scope>runtime</scope> 即可:


  1. <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client -->
  2. <dependency>
  3.     <groupId>org.apache.hadoop</groupId>
  4.     <artifactId>hadoop-client</artifactId>
  5.     <version>2.7.3</version>
  6.     <scope>runtime</scope>
  7. </dependency>
posted @ 2017-08-10 16:35  四叶草Grass  阅读(6304)  评论(0编辑  收藏  举报