Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. trunk: 1.1.0
  2. branch: 1.1.0.MyBranch
  3. branch: 1.1.0.AnotherBranch
  4.  
  5. "a sequence of literals that identifies the base revision part of the artifact
  6. version, excluding any integration information"
  7. "'1.5.10', or in case of an integration revision '1.2-SNAPSHOT' the base revision
  8. is '1.2'"
  9.  
  10. MyRepo
  11. MyLib
  12. 1.1.0 (this is the dll from trunk)
  13. -MyLib.dll
  14. 1.1.0.MyBranch-SNAPSHOT (dev builds from the "MyBranch" branch)
  15. -MyLib.dll
  16. 1.1.0.AnotherBranch-SNAPSHOT (dev builds from the "AnotherBranch" branch)
  17. -MyLib.dll
  18.  
  19. MySnapshotRepo
  20. CompanyName
  21. CompanyName.MyLib
  22. 1.0-SNAPSHOT
  23. MyLib.dll (snapshot builds from the dev branch)
  24. MyReleaseRepo
  25. CompanyName
  26. CompanyName.MyLib
  27. 1.0.0
  28. MyLib.dll (release builds from the trunk)
  29. 1.0.1
  30. MyLib.dll (release builds from the trunk)
  31. 1.0.2
  32. MyLib.dll (release builds from the trunk)
  33.  
  34. <settings defaultResolver="defaultresolvechain"/>
  35.  
  36. <ivy:resolve transitive="false" resolveMode="snapshot-resolve" conf="compile,test"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement