pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.0.0</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.zhyc</groupId>
  13. <artifactId>xps-server</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <packaging>pom</packaging>
  16. <name>yyds</name>
  17. <description>XPS Server FrameWork</description>
  18. <modules>
  19. <module>xps-application</module>
  20. <module>xps-base</module>
  21. <module>xps-aqpt</module>
  22. <module>xps-lylc</module>
  23. <module>xps-hos</module>
  24. <module>xps-nhc</module>
  25. <module>xps-gov</module>
  26. <module>xps-jyprj</module>
  27. </modules>
  28. <properties>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  31. <java.version>17</java.version>
  32. <bitwalker.version>1.21</bitwalker.version>
  33. <oshi.version>3.9.1</oshi.version>
  34. <skipTests>true</skipTests>
  35. <grpc.version>2.5.0.RELEASE</grpc.version>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. <!-- 移除掉默认支持的 Tomcat -->
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-tomcat</artifactId>
  46. </exclusion>
  47. <!--排除默认的tomcat-jdbc-->
  48. <exclusion>
  49. <groupId>org.apache.tomcat</groupId>
  50. <artifactId>tomcat-jdbc</artifactId>
  51. </exclusion>
  52. <!--排除默认的jackson-->
  53. <exclusion>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-json</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- undertow 容器 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-undertow</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-validation</artifactId>
  67. </dependency>
  68. <!-- Quartz-->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-quartz</artifactId>
  72. </dependency>
  73. <!-- 热部署 -->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-devtools</artifactId>
  77. </dependency>
  78. <!--redis-->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-redis</artifactId>
  82. <exclusions>
  83. <exclusion>
  84. <artifactId>spring-context-support</artifactId>
  85. <groupId>org.springframework</groupId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-configuration-processor</artifactId>
  92. <optional>true</optional>
  93. </dependency>
  94. <!--Unit Test-->
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-test</artifactId>
  98. </dependency>
  99. <!--mqtt-->
  100. <dependency>
  101. <groupId>org.springframework.integration</groupId>
  102. <artifactId>spring-integration-stream</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-integration</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-actuator</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.integration</groupId>
  114. <artifactId>spring-integration-mqtt</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-starter-websocket</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>jakarta.annotation</groupId>
  122. <artifactId>jakarta.annotation-api</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>jakarta.servlet</groupId>
  126. <artifactId>jakarta.servlet-api</artifactId>
  127. </dependency>
  128. <!--lombok-->
  129. <dependency>
  130. <groupId>org.projectlombok</groupId>
  131. <artifactId>lombok</artifactId>
  132. <optional>true</optional>
  133. </dependency>
  134. <!--MyBatis-->
  135. <dependency>
  136. <groupId>org.mybatis.spring.boot</groupId>
  137. <artifactId>mybatis-spring-boot-starter</artifactId>
  138. <version>3.0.1</version>
  139. </dependency>
  140. <!--PageHelper-->
  141. <dependency>
  142. <groupId>com.github.pagehelper</groupId>
  143. <artifactId>pagehelper-spring-boot-starter</artifactId>
  144. <version>1.4.6</version>
  145. </dependency>
  146. <!--DB performance Spy-->
  147. <dependency>
  148. <groupId>p6spy</groupId>
  149. <artifactId>p6spy</artifactId>
  150. <version>3.9.1</version>
  151. </dependency>
  152. <!-- mysql -->
  153. <dependency>
  154. <groupId>com.mysql</groupId>
  155. <artifactId>mysql-connector-j</artifactId>
  156. </dependency>
  157. <!-- minio -->
  158. <dependency>
  159. <groupId>io.minio</groupId>
  160. <artifactId>minio</artifactId>
  161. <version>8.4.6</version>
  162. </dependency>
  163. <!--工具jar-->
  164. <dependency>
  165. <groupId>cn.hutool</groupId>
  166. <artifactId>hutool-all</artifactId>
  167. <version>5.8.11</version>
  168. </dependency>
  169. <!-- Fastjson -->
  170. <dependency>
  171. <groupId>com.alibaba.fastjson2</groupId>
  172. <artifactId>fastjson2</artifactId>
  173. <version>2.0.22</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.alibaba.fastjson2</groupId>
  177. <artifactId>fastjson2-extension-spring5</artifactId>
  178. <version>2.0.22</version>
  179. </dependency>
  180. <!--汉字转拼音及首字母-->
  181. <dependency>
  182. <groupId>com.belerweb</groupId>
  183. <artifactId>pinyin4j</artifactId>
  184. <version>2.5.1</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.google.guava</groupId>
  188. <artifactId>guava</artifactId>
  189. <version>31.1-jre</version>
  190. </dependency>
  191. <!--极光文档-->
  192. <dependency>
  193. <groupId>cn.jpush.api</groupId>
  194. <artifactId>jpush-client</artifactId>
  195. <version>3.6.6</version>
  196. <exclusions>
  197. <exclusion>
  198. <artifactId>gson</artifactId>
  199. <groupId>com.google.code.gson</groupId>
  200. </exclusion>
  201. </exclusions>
  202. </dependency>
  203. <!--短信发送验证-->
  204. <dependency>
  205. <groupId>com.aliyun</groupId>
  206. <artifactId>aliyun-java-sdk-core</artifactId>
  207. <version>4.6.2</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.aliyun</groupId>
  211. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  212. <version>2.2.1</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.jetbrains</groupId>
  216. <artifactId>annotations</artifactId>
  217. <version>23.1.0</version>
  218. <scope>compile</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.github.tobato</groupId>
  222. <artifactId>fastdfs-client</artifactId>
  223. <version>1.27.2</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>net.coobird</groupId>
  227. <artifactId>thumbnailator</artifactId>
  228. <version>0.4.19</version>
  229. </dependency>
  230. <!-- 解析客户端操作系统、浏览器等 -->
  231. <dependency>
  232. <groupId>eu.bitwalker</groupId>
  233. <artifactId>UserAgentUtils</artifactId>
  234. <version>1.21</version>
  235. </dependency>
  236. <!--JWT-->
  237. <dependency>
  238. <groupId>io.jsonwebtoken</groupId>
  239. <artifactId>jjwt</artifactId>
  240. <version>0.9.1</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.springframework</groupId>
  244. <artifactId>spring-tx</artifactId>
  245. </dependency>
  246. </dependencies>
  247. <build>
  248. <plugins>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-compiler-plugin</artifactId>
  252. <configuration>
  253. <source>17</source>
  254. <target>17</target>
  255. </configuration>
  256. </plugin>
  257. </plugins>
  258. <resources>
  259. <resource>
  260. <directory>src/main/java</directory>
  261. <includes>
  262. <include>**/*.xml</include>
  263. </includes>
  264. </resource>
  265. <resource>
  266. <directory>src/main/resources</directory>
  267. </resource>
  268. </resources>
  269. </build>
  270. <repositories>
  271. <repository>
  272. <id>public</id>
  273. <name>aliyun nexus</name>
  274. <!-- 使用新版阿里云Maven中央仓库,如下是官网-->
  275. <!-- https://developer.aliyun.com/mvn/guide -->
  276. <url>https://maven.aliyun.com/repository/public</url>
  277. <releases>
  278. <enabled>true</enabled>
  279. </releases>
  280. </repository>
  281. </repositories>
  282. <pluginRepositories>
  283. <pluginRepository>
  284. <id>public</id>
  285. <name>aliyun nexus</name>
  286. <url>https://maven.aliyun.com/repository/public</url>
  287. <releases>
  288. <enabled>true</enabled>
  289. </releases>
  290. <snapshots>
  291. <enabled>false</enabled>
  292. </snapshots>
  293. </pluginRepository>
  294. </pluginRepositories>
  295. </project>