pom.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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>com.qmth.boot</groupId>
  6. <artifactId>qmth-boot</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.3</version>
  9. <modules>
  10. <module>starter-api</module>
  11. <module>tools-poi</module>
  12. <module>tools-signature</module>
  13. <module>tools-common</module>
  14. <module>tools-device</module>
  15. <module>data-redis</module>
  16. <module>data-mybatis-plus</module>
  17. <module>core-models</module>
  18. <module>core-concurrent</module>
  19. <module>core-uid</module>
  20. <module>core-metrics</module>
  21. <module>core-rate-limit</module>
  22. <module>core-security</module>
  23. <module>core-logging</module>
  24. <module>core-cache</module>
  25. <module>core-schedule</module>
  26. <module>core-fss</module>
  27. <module>core-solar</module>
  28. <module>core-retrofit</module>
  29. <module>core-sms</module>
  30. </modules>
  31. <name>qmth-boot</name>
  32. <properties>
  33. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  34. <maven.compiler.source>1.8</maven.compiler.source>
  35. <maven.compiler.target>1.8</maven.compiler.target>
  36. <springboot.version>2.3.7.RELEASE</springboot.version>
  37. <okhttp.version>3.14.9</okhttp.version>
  38. </properties>
  39. <dependencyManagement>
  40. <dependencies>
  41. <!-- inner modules -->
  42. <dependency>
  43. <groupId>com.qmth.boot</groupId>
  44. <artifactId>starter-api</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.qmth.boot</groupId>
  49. <artifactId>tools-signature</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.qmth.boot</groupId>
  54. <artifactId>tools-poi</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qmth.boot</groupId>
  59. <artifactId>tools-device</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.qmth.boot</groupId>
  64. <artifactId>tools-common</artifactId>
  65. <version>${project.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.qmth.boot</groupId>
  69. <artifactId>core-security</artifactId>
  70. <version>${project.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qmth.boot</groupId>
  74. <artifactId>core-uid</artifactId>
  75. <version>${project.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.qmth.boot</groupId>
  79. <artifactId>core-metrics</artifactId>
  80. <version>${project.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.qmth.boot</groupId>
  84. <artifactId>core-rate-limit</artifactId>
  85. <version>${project.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.qmth.boot</groupId>
  89. <artifactId>core-logging</artifactId>
  90. <version>${project.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.qmth.boot</groupId>
  94. <artifactId>core-models</artifactId>
  95. <version>${project.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.qmth.boot</groupId>
  99. <artifactId>core-concurrent</artifactId>
  100. <version>${project.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.qmth.boot</groupId>
  104. <artifactId>core-cache</artifactId>
  105. <version>${project.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.qmth.boot</groupId>
  109. <artifactId>core-schedule</artifactId>
  110. <version>${project.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.qmth.boot</groupId>
  114. <artifactId>core-fss</artifactId>
  115. <version>${project.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.qmth.boot</groupId>
  119. <artifactId>core-solar</artifactId>
  120. <version>${project.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.qmth.boot</groupId>
  124. <artifactId>core-retrofit</artifactId>
  125. <version>${project.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.qmth.boot</groupId>
  129. <artifactId>core-sms</artifactId>
  130. <version>${project.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.qmth.boot</groupId>
  134. <artifactId>data-redis</artifactId>
  135. <version>${project.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.qmth.boot</groupId>
  139. <artifactId>data-mybatis-plus</artifactId>
  140. <version>${project.version}</version>
  141. </dependency>
  142. <!-- spring modules -->
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-web</artifactId>
  146. <version>${springboot.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot</artifactId>
  151. <version>${springboot.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-autoconfigure</artifactId>
  156. <version>${springboot.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-starter-logging</artifactId>
  161. <version>${springboot.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework.boot</groupId>
  165. <artifactId>spring-boot-starter-validation</artifactId>
  166. <version>${springboot.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-starter-cache</artifactId>
  171. <version>${springboot.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-starter-jdbc</artifactId>
  176. <version>${springboot.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.springframework.boot</groupId>
  180. <artifactId>spring-boot-starter-data-redis</artifactId>
  181. <version>${springboot.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-starter-aop</artifactId>
  186. <version>${springboot.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-starter-test</artifactId>
  191. <version>${springboot.version}</version>
  192. </dependency>
  193. <!-- thirdpart modules -->
  194. <dependency>
  195. <groupId>org.apache.commons</groupId>
  196. <artifactId>commons-lang3</artifactId>
  197. <version>3.11</version>
  198. </dependency>
  199. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  200. <dependency>
  201. <groupId>commons-codec</groupId>
  202. <artifactId>commons-codec</artifactId>
  203. <version>1.15</version>
  204. </dependency>
  205. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  206. <dependency>
  207. <groupId>com.fasterxml.jackson.core</groupId>
  208. <artifactId>jackson-core</artifactId>
  209. <version>2.11.3</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.fasterxml.jackson.core</groupId>
  213. <artifactId>jackson-databind</artifactId>
  214. <version>2.11.3</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.fasterxml.jackson.datatype</groupId>
  218. <artifactId>jackson-datatype-jsr310</artifactId>
  219. <version>2.11.3</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.fasterxml.jackson.core</groupId>
  223. <artifactId>jackson-annotations</artifactId>
  224. <version>2.11.3</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>com.github.ben-manes.caffeine</groupId>
  228. <artifactId>caffeine</artifactId>
  229. <version>2.8.8</version>
  230. </dependency>
  231. <!-- https://mvnrepository.com/artifact/org.redisson/redisson -->
  232. <dependency>
  233. <groupId>org.redisson</groupId>
  234. <artifactId>redisson</artifactId>
  235. <version>3.15.0</version>
  236. </dependency>
  237. <!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-data-21 -->
  238. <dependency>
  239. <groupId>org.redisson</groupId>
  240. <artifactId>redisson-spring-data-21</artifactId>
  241. <version>3.15.0</version>
  242. </dependency>
  243. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  244. <dependency>
  245. <groupId>com.baomidou</groupId>
  246. <artifactId>mybatis-plus-boot-starter</artifactId>
  247. <version>3.4.2</version>
  248. </dependency>
  249. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  250. <dependency>
  251. <groupId>org.apache.poi</groupId>
  252. <artifactId>poi-ooxml</artifactId>
  253. <version>5.0.0</version>
  254. </dependency>
  255. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  256. <dependency>
  257. <groupId>mysql</groupId>
  258. <artifactId>mysql-connector-java</artifactId>
  259. <version>8.0.23</version>
  260. </dependency>
  261. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  262. <dependency>
  263. <groupId>com.aliyun.oss</groupId>
  264. <artifactId>aliyun-sdk-oss</artifactId>
  265. <version>3.12.0</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>javax.xml.bind</groupId>
  269. <artifactId>jaxb-api</artifactId>
  270. <version>2.3.1</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>javax.activation</groupId>
  274. <artifactId>activation</artifactId>
  275. <version>1.1.1</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.glassfish.jaxb</groupId>
  279. <artifactId>jaxb-runtime</artifactId>
  280. <version>2.3.3</version>
  281. </dependency>
  282. <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit -->
  283. <dependency>
  284. <groupId>com.squareup.retrofit2</groupId>
  285. <artifactId>retrofit</artifactId>
  286. <version>2.9.0</version>
  287. </dependency>
  288. <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-scalars -->
  289. <dependency>
  290. <groupId>com.squareup.retrofit2</groupId>
  291. <artifactId>converter-scalars</artifactId>
  292. <version>2.9.0</version>
  293. </dependency>
  294. <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-jackson -->
  295. <dependency>
  296. <groupId>com.squareup.retrofit2</groupId>
  297. <artifactId>converter-jackson</artifactId>
  298. <version>2.9.0</version>
  299. </dependency>
  300. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  301. <dependency>
  302. <groupId>com.squareup.okhttp3</groupId>
  303. <artifactId>okhttp</artifactId>
  304. <version>${okhttp.version}</version>
  305. </dependency>
  306. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor -->
  307. <dependency>
  308. <groupId>com.squareup.okhttp3</groupId>
  309. <artifactId>logging-interceptor</artifactId>
  310. <version>${okhttp.version}</version>
  311. </dependency>
  312. <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
  313. <dependency>
  314. <groupId>com.github.oshi</groupId>
  315. <artifactId>oshi-core</artifactId>
  316. <version>5.8.2</version>
  317. </dependency>
  318. <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
  319. <dependency>
  320. <groupId>net.java.dev.jna</groupId>
  321. <artifactId>jna</artifactId>
  322. <version>5.9.0</version>
  323. </dependency>
  324. <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
  325. <dependency>
  326. <groupId>net.java.dev.jna</groupId>
  327. <artifactId>jna-platform</artifactId>
  328. <version>5.9.0</version>
  329. </dependency>
  330. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  331. <dependency>
  332. <groupId>org.slf4j</groupId>
  333. <artifactId>slf4j-api</artifactId>
  334. <version>1.7.32</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>junit</groupId>
  338. <artifactId>junit</artifactId>
  339. <version>4.12</version>
  340. </dependency>
  341. </dependencies>
  342. </dependencyManagement>
  343. <distributionManagement>
  344. <repository>
  345. <id>maven-releases</id>
  346. <name>maven-releases</name>
  347. <!-- 在以下的url中填写正确的maven仓库的地址-->
  348. <url>http://192.168.10.83:8083/repository/maven-releases/</url>
  349. </repository>
  350. <snapshotRepository>
  351. <id>maven-snapshots</id>
  352. <name>maven-snapshots</name>
  353. <!-- 在以下的url中填写正确的maven仓库的地址-->
  354. <url>http://192.168.10.83:8083/repository/maven-snapshots/</url>
  355. </snapshotRepository>
  356. </distributionManagement>
  357. <build>
  358. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  359. <plugins>
  360. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  361. <plugin>
  362. <artifactId>maven-clean-plugin</artifactId>
  363. <version>3.1.0</version>
  364. </plugin>
  365. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  366. <plugin>
  367. <artifactId>maven-resources-plugin</artifactId>
  368. <version>3.0.2</version>
  369. </plugin>
  370. <plugin>
  371. <artifactId>maven-compiler-plugin</artifactId>
  372. <version>3.8.0</version>
  373. </plugin>
  374. <plugin>
  375. <artifactId>maven-surefire-plugin</artifactId>
  376. <version>2.22.1</version>
  377. </plugin>
  378. <plugin>
  379. <artifactId>maven-jar-plugin</artifactId>
  380. <version>3.0.2</version>
  381. </plugin>
  382. <plugin>
  383. <artifactId>maven-install-plugin</artifactId>
  384. <version>2.5.2</version>
  385. </plugin>
  386. <plugin>
  387. <artifactId>maven-deploy-plugin</artifactId>
  388. <version>2.8.2</version>
  389. </plugin>
  390. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  391. <plugin>
  392. <artifactId>maven-site-plugin</artifactId>
  393. <version>3.7.1</version>
  394. </plugin>
  395. <plugin>
  396. <artifactId>maven-project-info-reports-plugin</artifactId>
  397. <version>3.0.0</version>
  398. </plugin>
  399. </plugins>
  400. </pluginManagement>
  401. </build>
  402. </project>