pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>vip.xiaonuo</groupId>
  6. <artifactId>yqyc-system</artifactId>
  7. <name>snowy</name>
  8. <version>3.0.0</version>
  9. <description>snowy快速开发平台</description>
  10. <packaging>pom</packaging>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>3.2.1</version>
  15. </parent>
  16. <properties>
  17. <java.version>17</java.version>
  18. <snowy.version>3.0.0</snowy.version>
  19. <spring-boot.version>3.2.1</spring-boot.version>
  20. <spring-framework.version>6.1.2</spring-framework.version>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. </properties>
  24. <modules>
  25. <!-- 基础通用规则模块 -->
  26. <module>snowy-common</module>
  27. <!-- 插件模块 -->
  28. <module>snowy-plugin</module>
  29. <!-- 插件API接口模块 -->
  30. <module>snowy-plugin-api</module>
  31. <!-- 主启动模块 -->
  32. <module>snowy-web-app</module>
  33. </modules>
  34. <dependencyManagement>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-devtools</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <!-- snowy-common -->
  42. <dependency>
  43. <groupId>vip.xiaonuo</groupId>
  44. <artifactId>snowy-common</artifactId>
  45. <version>${snowy.version}</version>
  46. </dependency>
  47. <!-- snowy-plugin-auth-api -->
  48. <dependency>
  49. <groupId>vip.xiaonuo</groupId>
  50. <artifactId>snowy-plugin-auth-api</artifactId>
  51. <version>${snowy.version}</version>
  52. </dependency>
  53. <!-- snowy-plugin-biz-api -->
  54. <dependency>
  55. <groupId>vip.xiaonuo</groupId>
  56. <artifactId>snowy-plugin-biz-api</artifactId>
  57. <version>${snowy.version}</version>
  58. </dependency>
  59. <!-- snowy-plugin-client-api -->
  60. <dependency>
  61. <groupId>vip.xiaonuo</groupId>
  62. <artifactId>snowy-plugin-client-api</artifactId>
  63. <version>${snowy.version}</version>
  64. </dependency>
  65. <!-- snowy-plugin-dev-api -->
  66. <dependency>
  67. <groupId>vip.xiaonuo</groupId>
  68. <artifactId>snowy-plugin-dev-api</artifactId>
  69. <version>${snowy.version}</version>
  70. </dependency>
  71. <!-- snowy-plugin-gen-api -->
  72. <dependency>
  73. <groupId>vip.xiaonuo</groupId>
  74. <artifactId>snowy-plugin-gen-api</artifactId>
  75. <version>${snowy.version}</version>
  76. </dependency>
  77. <!-- snowy-plugin-mobile-api -->
  78. <dependency>
  79. <groupId>vip.xiaonuo</groupId>
  80. <artifactId>snowy-plugin-mobile-api</artifactId>
  81. <version>${snowy.version}</version>
  82. </dependency>
  83. <!-- snowy-plugin-sys-api -->
  84. <dependency>
  85. <groupId>vip.xiaonuo</groupId>
  86. <artifactId>snowy-plugin-sys-api</artifactId>
  87. <version>${snowy.version}</version>
  88. </dependency>
  89. <!-- snowy-plugin-auth -->
  90. <dependency>
  91. <groupId>vip.xiaonuo</groupId>
  92. <artifactId>snowy-plugin-auth</artifactId>
  93. <version>${snowy.version}</version>
  94. </dependency>
  95. <!-- snowy-plugin-biz -->
  96. <dependency>
  97. <groupId>vip.xiaonuo</groupId>
  98. <artifactId>snowy-plugin-biz</artifactId>
  99. <version>${snowy.version}</version>
  100. </dependency>
  101. <!-- snowy-plugin-client -->
  102. <dependency>
  103. <groupId>vip.xiaonuo</groupId>
  104. <artifactId>snowy-plugin-client</artifactId>
  105. <version>${snowy.version}</version>
  106. </dependency>
  107. <!-- snowy-plugin-dev -->
  108. <dependency>
  109. <groupId>vip.xiaonuo</groupId>
  110. <artifactId>snowy-plugin-dev</artifactId>
  111. <version>${snowy.version}</version>
  112. </dependency>
  113. <!-- snowy-plugin-gen -->
  114. <dependency>
  115. <groupId>vip.xiaonuo</groupId>
  116. <artifactId>snowy-plugin-gen</artifactId>
  117. <version>${snowy.version}</version>
  118. </dependency>
  119. <!-- snowy-plugin-mobile -->
  120. <dependency>
  121. <groupId>vip.xiaonuo</groupId>
  122. <artifactId>snowy-plugin-mobile</artifactId>
  123. <version>${snowy.version}</version>
  124. </dependency>
  125. <!-- snowy-plugin-sys -->
  126. <dependency>
  127. <groupId>vip.xiaonuo</groupId>
  128. <artifactId>snowy-plugin-sys</artifactId>
  129. <version>${snowy.version}</version>
  130. </dependency>
  131. <!-- nashorn-core -->
  132. <dependency>
  133. <groupId>org.openjdk.nashorn</groupId>
  134. <artifactId>nashorn-core</artifactId>
  135. <version>15.4</version>
  136. </dependency>
  137. <!-- lombok -->
  138. <dependency>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. <version>1.18.30</version>
  142. </dependency>
  143. <!-- druid -->
  144. <dependency>
  145. <groupId>com.alibaba</groupId>
  146. <artifactId>druid-spring-boot-3-starter</artifactId>
  147. <version>1.2.21</version>
  148. </dependency>
  149. <!-- mybatis-plus -->
  150. <dependency>
  151. <groupId>com.baomidou</groupId>
  152. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  153. <version>3.5.5</version>
  154. </dependency>
  155. <!-- easy-trans -->
  156. <dependency>
  157. <groupId>com.fhs-opensource</groupId>
  158. <artifactId>easy-trans-spring-boot-starter</artifactId>
  159. <version>3.0.0</version>
  160. </dependency>
  161. <!-- easy-trans-mybatis-plus-extend -->
  162. <dependency>
  163. <groupId>com.fhs-opensource</groupId>
  164. <artifactId>easy-trans-mybatis-plus-extend</artifactId>
  165. <version>3.0.0</version>
  166. </dependency>
  167. <!-- redis -->
  168. <dependency>
  169. <groupId>org.apache.commons</groupId>
  170. <artifactId>commons-pool2</artifactId>
  171. <version>2.12.0</version>
  172. </dependency>
  173. <!-- hutool -->
  174. <dependency>
  175. <groupId>cn.hutool</groupId>
  176. <artifactId>hutool-all</artifactId>
  177. <version>5.8.25</version>
  178. </dependency>
  179. <!-- pinyin4j -->
  180. <dependency>
  181. <groupId>com.belerweb</groupId>
  182. <artifactId>pinyin4j</artifactId>
  183. <version>2.5.1</version>
  184. </dependency>
  185. <!-- ip2region -->
  186. <dependency>
  187. <groupId>org.lionsoul</groupId>
  188. <artifactId>ip2region</artifactId>
  189. <version>2.7.0</version>
  190. </dependency>
  191. <!-- knife4j -->
  192. <dependency>
  193. <groupId>com.github.xiaoymin</groupId>
  194. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  195. <version>4.5.0</version>
  196. </dependency>
  197. <!-- easy-poi -->
  198. <dependency>
  199. <groupId>cn.afterturn</groupId>
  200. <artifactId>easypoi-spring-boot-starter</artifactId>
  201. <version>4.4.0</version>
  202. </dependency>
  203. <!-- sm-crypto -->
  204. <dependency>
  205. <groupId>com.antherd</groupId>
  206. <artifactId>sm-crypto</artifactId>
  207. <version>0.3.2</version>
  208. </dependency>
  209. <!-- easyexcel -->
  210. <dependency>
  211. <groupId>com.alibaba</groupId>
  212. <artifactId>easyexcel</artifactId>
  213. <version>3.3.3</version>
  214. </dependency>
  215. <!-- Sa-token-core -->
  216. <dependency>
  217. <groupId>cn.dev33</groupId>
  218. <artifactId>sa-token-core</artifactId>
  219. <version>1.37.0</version>
  220. </dependency>
  221. <!-- Sa-token -->
  222. <dependency>
  223. <groupId>cn.dev33</groupId>
  224. <artifactId>sa-token-spring-boot3-starter</artifactId>
  225. <version>1.37.0</version>
  226. </dependency>
  227. <!-- Sa-token 整合 redis (使用jackson序列化方式) -->
  228. <dependency>
  229. <groupId>cn.dev33</groupId>
  230. <artifactId>sa-token-redis-jackson</artifactId>
  231. <version>1.37.0</version>
  232. </dependency>
  233. <!-- Sa-Token插件:权限缓存与业务缓存分离 -->
  234. <dependency>
  235. <groupId>cn.dev33</groupId>
  236. <artifactId>sa-token-alone-redis</artifactId>
  237. <version>1.37.0</version>
  238. </dependency>
  239. <!-- Sa-Token 插件:整合SSO -->
  240. <dependency>
  241. <groupId>cn.dev33</groupId>
  242. <artifactId>sa-token-sso</artifactId>
  243. <version>1.37.0</version>
  244. </dependency>
  245. <!-- JustAuth 第三方登录 -->
  246. <dependency>
  247. <groupId>me.zhyd.oauth</groupId>
  248. <artifactId>JustAuth</artifactId>
  249. <version>1.16.6</version>
  250. </dependency>
  251. <!-- beetl模板引擎 -->
  252. <dependency>
  253. <groupId>com.ibeetl</groupId>
  254. <artifactId>beetl-framework-starter</artifactId>
  255. <version>1.2.40.Beetl.RELEASE</version>
  256. </dependency>
  257. <!--x-file-storage文件sdk-->
  258. <dependency>
  259. <groupId>org.dromara.x-file-storage</groupId>
  260. <artifactId>x-file-storage-spring</artifactId>
  261. <version>2.1.0</version>
  262. </dependency>
  263. <!--腾讯云文件sdk-->
  264. <dependency>
  265. <groupId>com.qcloud</groupId>
  266. <artifactId>cos_api</artifactId>
  267. <version>5.6.199</version>
  268. </dependency>
  269. <!--阿里云文件sdk-->
  270. <dependency>
  271. <groupId>com.aliyun.oss</groupId>
  272. <artifactId>aliyun-sdk-oss</artifactId>
  273. <version>3.15.1</version>
  274. </dependency>
  275. <!--minio文件sdk-->
  276. <dependency>
  277. <groupId>io.minio</groupId>
  278. <artifactId>minio</artifactId>
  279. <version>8.5.2</version>
  280. </dependency>
  281. <!--java邮件sdk-->
  282. <dependency>
  283. <groupId>com.sun.mail</groupId>
  284. <artifactId>javax.mail</artifactId>
  285. <version>1.5.4</version>
  286. </dependency>
  287. <!--阿里云邮件sdk-->
  288. <dependency>
  289. <groupId>com.aliyun</groupId>
  290. <artifactId>dm20151123</artifactId>
  291. <version>1.0.6</version>
  292. </dependency>
  293. <!-- 腾讯云邮件sdk -->
  294. <dependency>
  295. <groupId>com.tencentcloudapi</groupId>
  296. <artifactId>tencentcloud-sdk-java-ses</artifactId>
  297. <version>3.1.944</version>
  298. </dependency>
  299. <!--阿里云短信sdk-->
  300. <dependency>
  301. <groupId>com.aliyun</groupId>
  302. <artifactId>dysmsapi20170525</artifactId>
  303. <version>2.0.24</version>
  304. </dependency>
  305. <!--腾讯云短信sdk-->
  306. <dependency>
  307. <groupId>com.tencentcloudapi</groupId>
  308. <artifactId>tencentcloud-sdk-java-sms</artifactId>
  309. <version>3.1.893</version>
  310. </dependency>
  311. <!-- sms4j短信sdk -->
  312. <dependency>
  313. <groupId>org.dromara.sms4j</groupId>
  314. <artifactId>sms4j-javase-plugin</artifactId>
  315. <version>3.1.1</version>
  316. </dependency>
  317. <!--系统硬件信息-->
  318. <dependency>
  319. <groupId>com.github.oshi</groupId>
  320. <artifactId>oshi-core</artifactId>
  321. <version>6.4.11</version>
  322. </dependency>
  323. <!-- dynamic-datasource -->
  324. <dependency>
  325. <groupId>com.baomidou</groupId>
  326. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  327. <version>4.3.0</version>
  328. </dependency>
  329. <!-- mysql -->
  330. <dependency>
  331. <groupId>com.mysql</groupId>
  332. <artifactId>mysql-connector-j</artifactId>
  333. <version>8.3.0</version>
  334. </dependency>
  335. <!-- postgresql -->
  336. <!--<dependency>
  337. <groupId>org.postgresql</groupId>
  338. <artifactId>postgresql</artifactId>
  339. <version>42.7.1</version>
  340. </dependency>-->
  341. <!-- 达梦数据库 -->
  342. <!--<dependency>
  343. <groupId>com.dameng</groupId>
  344. <artifactId>DmJdbcDriver18</artifactId>
  345. <version>8.1.3.62</version>
  346. </dependency>-->
  347. <!-- 人大金仓数据库 -->
  348. <!--<dependency>
  349. <groupId>cn.com.kingbase</groupId>
  350. <artifactId>kingbase8</artifactId>
  351. <version>8.6.0</version>
  352. </dependency>-->
  353. <!-- oracle -->
  354. <!--<dependency>
  355. <groupId>com.oracle.database.jdbc</groupId>
  356. <artifactId>ojdbc10</artifactId>
  357. <version>19.21.0.0</version>
  358. </dependency>
  359. <dependency>
  360. <groupId>com.oracle.database.nls</groupId>
  361. <artifactId>orai18n</artifactId>
  362. <version>23.3.0.23.09</version>
  363. </dependency>-->
  364. <!-- mssql -->
  365. <!--<dependency>
  366. <groupId>com.microsoft.sqlserver</groupId>
  367. <artifactId>mssql-jdbc</artifactId>
  368. <version>12.4.2.jre11</version>
  369. </dependency>-->
  370. </dependencies>
  371. </dependencyManagement>
  372. <build>
  373. <plugins>
  374. <plugin>
  375. <groupId>org.apache.maven.plugins</groupId>
  376. <artifactId>maven-compiler-plugin</artifactId>
  377. <version>3.12.1</version>
  378. <configuration>
  379. <compilerArgs>
  380. <arg>-parameters</arg>
  381. </compilerArgs>
  382. <source>17</source>
  383. <target>17</target>
  384. </configuration>
  385. </plugin>
  386. <plugin>
  387. <groupId>org.apache.maven.plugins</groupId>
  388. <artifactId>maven-source-plugin</artifactId>
  389. <version>3.3.0</version>
  390. <configuration>
  391. <attach>true</attach>
  392. </configuration>
  393. <executions>
  394. <execution>
  395. <phase>compile</phase>
  396. <goals>
  397. <goal>jar</goal>
  398. </goals>
  399. </execution>
  400. </executions>
  401. </plugin>
  402. </plugins>
  403. <resources>
  404. <resource>
  405. <directory>src/main/resources</directory>
  406. </resource>
  407. <resource>
  408. <directory>src/main/java</directory>
  409. <includes>
  410. <include>**/*.xml</include>
  411. </includes>
  412. </resource>
  413. </resources>
  414. </build>
  415. </project>