pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>cn.itlym.platform</groupId>
  5. <artifactId>shoulder-platform-parent</artifactId>
  6. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  7. <relativePath>../shoulder-platform-common/shoulder-platform-parent/pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <name>shoulder-user-center</name>
  11. <artifactId>shoulder-user-center</artifactId>
  12. <description>用户认证授权中心</description>
  13. <packaging>pom</packaging>
  14. <version>1.0-SNAPSHOT</version><!-- uaa.version -->
  15. <modules>
  16. <module>uaa-api</module>
  17. <module>uaa-infrastructure</module>
  18. <module>uaa-core</module>
  19. <module>uaa-reference</module>
  20. <module>uaa-modules</module>
  21. <module>uaa-provider</module>
  22. <module>uaa-web</module>
  23. <module>uaa-start</module>
  24. </modules>
  25. <dependencyManagement>
  26. <dependencies>
  27. <!-- ======================= 基础设施层 ======================= -->
  28. <dependency>
  29. <groupId>cn.itlym.platform</groupId>
  30. <artifactId>uaa-infrastructure</artifactId>
  31. <version>1.0-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cn.itlym.platform</groupId>
  35. <artifactId>uaa-storage</artifactId>
  36. <version>1.0-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.itlym.platform</groupId>
  40. <artifactId>uaa-storage-mysql</artifactId>
  41. <version>1.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.itlym.platform</groupId>
  45. <artifactId>uaa-cache</artifactId>
  46. <version>1.0-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.itlym.platform</groupId>
  50. <artifactId>uaa-cache-memory</artifactId>
  51. <version>1.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.itlym.platform</groupId>
  55. <artifactId>uaa-cache-redis</artifactId>
  56. <version>1.0-SNAPSHOT</version>
  57. </dependency>
  58. <!-- ======================= 外部接口、消息通知依赖 ======================= -->
  59. <dependency>
  60. <groupId>cn.itlym.platform</groupId>
  61. <artifactId>uaa-reference</artifactId>
  62. <version>1.0-SNAPSHOT</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.itlym.platform</groupId>
  66. <artifactId>uaa-reference-adaptor</artifactId>
  67. <version>1.0-SNAPSHOT</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.itlym.platform</groupId>
  71. <artifactId>uaa-reference-xxx</artifactId>
  72. <version>1.0-SNAPSHOT</version>
  73. </dependency>
  74. <!-- ======================= 通用业务 ======================= -->
  75. <dependency>
  76. <groupId>cn.itlym.platform</groupId>
  77. <artifactId>uaa-core</artifactId>
  78. <version>1.0-SNAPSHOT</version>
  79. </dependency>
  80. <!-- ======================= 具体业务 ======================= -->
  81. <dependency>
  82. <groupId>cn.itlym.platform</groupId>
  83. <artifactId>uaa-modules</artifactId>
  84. <version>1.0-SNAPSHOT</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>cn.itlym.platform</groupId>
  88. <artifactId>uaa-xxx</artifactId>
  89. <version>1.0-SNAPSHOT</version>
  90. </dependency>
  91. <!-- ======================= 为外部提供 api ======================= -->
  92. <dependency>
  93. <groupId>cn.itlym.platform</groupId>
  94. <artifactId>uaa-api</artifactId>
  95. <version>1.0-SNAPSHOT</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>cn.itlym.platform</groupId>
  99. <artifactId>uaa-provider</artifactId>
  100. <version>1.0-SNAPSHOT</version>
  101. </dependency>
  102. <!-- ======================= web 层,如自带的管理界面 ======================= -->
  103. <dependency>
  104. <groupId>cn.itlym.platform</groupId>
  105. <artifactId>uaa-web</artifactId>
  106. <version>1.0-SNAPSHOT</version>
  107. </dependency>
  108. </dependencies>
  109. </dependencyManagement>
  110. </project>