pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>vip.xiaonuo</groupId>
  8. <artifactId>education-modules</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>education-biz-app</artifactId>
  12. <packaging>jar</packaging>
  13. <description>业务应用启动组件</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <!-- test -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <!-- junit -->
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <!-- mysql -->
  32. <!-- <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. </dependency>-->
  36. <!-- oracle -->
  37. <!--<dependency>
  38. <groupId>com.oracle.database.jdbc</groupId>
  39. <artifactId>ojdbc8</artifactId>
  40. </dependency>-->
  41. <!--<dependency>
  42. <groupId>com.oracle.database.nls</groupId>
  43. <artifactId>orai18n</artifactId>
  44. </dependency>-->
  45. <!-- mssql -->
  46. <!--<dependency>
  47. <groupId>com.microsoft.sqlserver</groupId>
  48. <artifactId>mssql-jdbc</artifactId>
  49. </dependency>-->
  50. <!-- 达梦数据库 -->
  51. <dependency>
  52. <groupId>DmJdbcDriver18</groupId>
  53. <artifactId>DmJdbcDriver18</artifactId>
  54. <version>1.0.0</version>
  55. <scope>system</scope>
  56. <systemPath>${pom.basedir}/src/main/resources/lib/DmJdbcDriver18.jar</systemPath>
  57. </dependency>
  58. <!-- 人大金仓数据库 -->
  59. <!--<dependency>
  60. <groupId>kingbase8-8.6.0</groupId>
  61. <artifactId>kingbase8-8.6.0</artifactId>
  62. <version>1.0.0</version>
  63. <scope>system</scope>
  64. <systemPath>${pom.basedir}/src/main/resources/lib/kingbase8-8.6.0.jar</systemPath>
  65. </dependency>-->
  66. <!-- sa-token -->
  67. <dependency>
  68. <groupId>cn.dev33</groupId>
  69. <artifactId>sa-token-spring-boot-starter</artifactId>
  70. <version>${sa.token.version}</version>
  71. </dependency>
  72. <!-- sa-token 整合 redis (使用jackson序列化方式) -->
  73. <dependency>
  74. <groupId>cn.dev33</groupId>
  75. <artifactId>sa-token-dao-redis-jackson</artifactId>
  76. <version>${sa.token.version}</version>
  77. </dependency>
  78. <!-- Sa-Token插件:权限缓存与业务缓存分离 -->
  79. <dependency>
  80. <groupId>cn.dev33</groupId>
  81. <artifactId>sa-token-alone-redis</artifactId>
  82. <version>${sa.token.version}</version>
  83. </dependency>
  84. <!-- Sa-Token 插件:整合SSO -->
  85. <dependency>
  86. <groupId>cn.dev33</groupId>
  87. <artifactId>sa-token-sso</artifactId>
  88. <version>${sa.token.version}</version>
  89. </dependency>
  90. <!-- education-common -->
  91. <dependency>
  92. <groupId>vip.xiaonuo</groupId>
  93. <artifactId>education-common</artifactId>
  94. </dependency>
  95. <!-- 登录鉴权插件 -->
  96. <dependency>
  97. <groupId>vip.xiaonuo</groupId>
  98. <artifactId>education-plugin-auth-api</artifactId>
  99. <version>${project.parent.version}</version>
  100. </dependency>
  101. <!-- 业务功能插件 -->
  102. <dependency>
  103. <groupId>vip.xiaonuo</groupId>
  104. <artifactId>education-plugin-biz-func</artifactId>
  105. <version>${project.parent.version}</version>
  106. </dependency>
  107. <!-- 系统功能插件Feign接口 -->
  108. <dependency>
  109. <groupId>vip.xiaonuo</groupId>
  110. <artifactId>education-plugin-sys-feign</artifactId>
  111. <version>${project.parent.version}</version>
  112. </dependency>
  113. <!-- 开发工具插件Feign接口 -->
  114. <dependency>
  115. <groupId>vip.xiaonuo</groupId>
  116. <artifactId>education-plugin-dev-feign</artifactId>
  117. <version>${project.parent.version}</version>
  118. </dependency>
  119. <!-- 多数据源插件 -->
  120. <dependency>
  121. <groupId>vip.xiaonuo</groupId>
  122. <artifactId>education-plugin-dbs-func</artifactId>
  123. <version>${project.parent.version}</version>
  124. </dependency>
  125. <!-- 功能案例插件 -->
  126. <dependency>
  127. <groupId>vip.xiaonuo</groupId>
  128. <artifactId>education-plugin-exm-func</artifactId>
  129. <version>${project.parent.version}</version>
  130. </dependency>
  131. <!-- 支付功能插件 -->
  132. <dependency>
  133. <groupId>vip.xiaonuo</groupId>
  134. <artifactId>education-plugin-pay-func</artifactId>
  135. <version>${project.parent.version}</version>
  136. </dependency>
  137. <!-- 动态租户插件 -->
  138. <dependency>
  139. <groupId>vip.xiaonuo</groupId>
  140. <artifactId>education-plugin-ten-func</artifactId>
  141. <version>${project.parent.version}</version>
  142. </dependency>
  143. <!-- bootstrap 配置加载 -->
  144. <dependency>
  145. <groupId>org.springframework.cloud</groupId>
  146. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  147. </dependency>
  148. <!-- SpringCloud 负载均衡 -->
  149. <dependency>
  150. <groupId>org.springframework.cloud</groupId>
  151. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  152. </dependency>
  153. <!-- https://blog.csdn.net/Tuine/article/details/122153363 -->
  154. <!-- caffeine缓存实现 -->
  155. <dependency>
  156. <groupId>com.github.ben-manes.caffeine</groupId>
  157. <artifactId>caffeine</artifactId>
  158. </dependency>
  159. <!-- nacos 注册中心客户端 -->
  160. <dependency>
  161. <groupId>com.alibaba.cloud</groupId>
  162. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  163. </dependency>
  164. <!-- nacos 配置中心客户端 -->
  165. <dependency>
  166. <groupId>com.alibaba.cloud</groupId>
  167. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  168. </dependency>
  169. <!-- 暴露各种指标 -->
  170. <dependency>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-starter-actuator</artifactId>
  173. </dependency>
  174. <!-- admin -->
  175. <dependency>
  176. <groupId>de.codecentric</groupId>
  177. <artifactId>spring-boot-admin-starter-client</artifactId>
  178. </dependency>
  179. <!-- openfeign -->
  180. <dependency>
  181. <groupId>org.springframework.cloud</groupId>
  182. <artifactId>spring-cloud-starter-openfeign</artifactId>
  183. </dependency>
  184. </dependencies>
  185. <build>
  186. <finalName>${project.artifactId}</finalName>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-maven-plugin</artifactId>
  191. <version>2.5.12</version>
  192. <configuration>
  193. <includeSystemScope>true</includeSystemScope>
  194. <fork>true</fork>
  195. </configuration>
  196. <executions>
  197. <execution>
  198. <goals>
  199. <goal>repackage</goal>
  200. </goals>
  201. </execution>
  202. </executions>
  203. </plugin>
  204. </plugins>
  205. </build>
  206. </project>