Guest User

Untitled

a guest
Nov 19th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. A <- B <- C
  2.  
  3. A's version is @{...a.version}
  4.  
  5. <properties>
  6. ...
  7. <yourCdep.version>
  8. ...
  9. </properties>
  10.  
  11. <dependencyManagement>
  12. <dependencies>
  13. ...
  14. <dependency>
  15. <groupId>yourCdep.group</groupId>
  16. <artifactId>yourCdep</artifactId>
  17. <version>${yourCdep.version}</version>
  18. </dependency>
  19. ...
  20. </dependencies>
  21. </dependencyManagement>
  22.  
  23. <dependencies>
  24. <dependency>
  25. <groupId></groupId>
  26. <artifactId>A</artifactId>
  27. <version></version>
  28. <optional>true</optional>
  29. </dependency>
  30. ...
  31. </dependencies>
  32.  
  33. <dependencies>
  34. <dependency>
  35. <groupId></groupId>
  36. <artifactId>B</artifactId>
  37. <version></version>
  38. </dependency>
  39. <dependency>
  40. <groupId></groupId>
  41. <artifactId>A</artifactId>
  42. <version></version>
  43. </dependency>
  44. ...
  45. </dependencies>
Add Comment
Please, Sign In to add comment