Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <plugin>
  2. <groupId>com.googlecode.maven-download-plugin</groupId>
  3. <artifactId>maven-download-plugin</artifactId>
  4. <version>1.1.0</version>
  5. <executions>
  6. <execution>
  7. <id>get-stuff</id>
  8. <phase>generate-sources</phase>
  9. <goals>
  10. <goal>wget</goal>
  11. </goals>
  12. <configuration>
  13. <url>http://myUrl/my.tar.gz</url>
  14. <unpack>true</unpack>
  15. <outputDirectory>${project.build.directory}</outputDirectory>
  16. </configuration>
  17. </execution>
  18. </executions>
  19. </plugin>
  20. <plugin>
  21.  
  22. [ERROR] Failed to execute goal com.googlecode.maven-download-plugin:maven-download-plugin:1.1.0:wget (get-moab)
  23. on project my-project: Execution get-stuff of goal com.googlecode.maven-download-plugin:maven-download-plugin:1.1.0:wget failed:
  24. An API incompatibility was encountered while executing com.googlecode.maven-download-plugin:maven-download-plugin:1.1.0:wget: java.lang.NoSuchMethodError: org.codehaus.plexus.util.cli.Commandline.createArg()Lorg/codehaus/plexus/util/cli/Arg;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement