Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. mvn -pl sub_module_name package -X -U --also-make-dependents
  2.  
  3. <repository>
  4. <id>nexus-snapshots</id>
  5. <url>${our.nexus.instance}</url>
  6. <releases>
  7. <enabled>true</enabled>
  8. <updatePolicy>never</updatePolicy>
  9. </releases>
  10. <snapshots>
  11. <enabled>true</enabled>
  12. <updatePolicy>never</updatePolicy>
  13. </snapshots>
  14. </repository>
  15. <repository>
  16. <id>nexus-releases</id>
  17. <url>${our.nexus.instance}</url>
  18. <releases>
  19. <enabled>true</enabled>
  20. <updatePolicy>never</updatePolicy>
  21. </releases>
  22. </repository>
  23. <repository>
  24. <id>central</id>
  25. <name>Maven Central Repository</name>
  26. <url>http://repo1.maven.org/maven2</url>
  27. <releases>
  28. <enabled>true</enabled>
  29. <updatePolicy>always</updatePolicy>
  30. </releases>
  31. <snapshots>
  32. <enabled>false</enabled>
  33. <updatePolicy>never</updatePolicy>
  34. </snapshots>
  35. </repository>
  36.  
  37. [ERROR] Failed to execute goal on project moduleA: Could not resolve
  38. dependencies for project my.artifact:moduleA:jar:1.0.01-
  39. SNAPSHOT: Could not find artifact my.artifact:common:jar:1.0.01-
  40. SNAPSHOT in nexus-snapshots
  41. ({our.nexus.instance}) ->
  42. [Help 1]
  43.  
  44. org.apache.maven.lifecycle.LifecycleExecutionException: Failed to
  45. execute goal on project moduleA: Could not resolve dependencies for project
  46. my.artifact:moduleA:jar:1.0.01-SNAPSHOT: Could not find
  47. artifact my.artifact:common:jar:1.0.01-SNAPSHOT in nexus-
  48. snapshots ({our.nexus.instance})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement