pom.xml 16 KB

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