pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qmth.themis</groupId>
  6. <artifactId>themis-service</artifactId>
  7. <version>1.1.3</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>themis-common</module>
  11. <module>themis-admin</module>
  12. <module>themis-business</module>
  13. <module>themis-exam</module>
  14. <module>themis-mq</module>
  15. <module>themis-task</module>
  16. </modules>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.3.0.RELEASE</version>
  21. </parent>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <project.version>1.0.0</project.version>
  25. <swagger2.version>2.9.2</swagger2.version>
  26. <logback.version>1.2.3</logback.version>
  27. <fastjson.version>1.2.68</fastjson.version>
  28. <druid.version>1.1.20</druid.version>
  29. <fileupload.version>1.4</fileupload.version>
  30. <poi.version>3.17</poi.version>
  31. <aliyun.version>3.8.1</aliyun.version>
  32. <guava.version>27.1-jre</guava.version>
  33. <mysql.version>8.0.20</mysql.version>
  34. <hutool.version>5.0.6</hutool.version>
  35. <bcprov.version>1.52</bcprov.version>
  36. <redis.version>3.3.0</redis.version>
  37. <rocket.version>2.1.0</rocket.version>
  38. <mybatis-plus.version>3.4.2</mybatis-plus.version>
  39. <spring-boot.version>2.3.0.RELEASE</spring-boot.version>
  40. <gson.version>2.8.6</gson.version>
  41. <commons.version>3.10</commons.version>
  42. <commons.codec.version>1.15</commons.codec.version>
  43. <jackson.version>2.11.0</jackson.version>
  44. <!-- <ehcache.version>2.10.6</ehcache.version>-->
  45. <swagger2-bootstrap.version>1.9.6</swagger2-bootstrap.version>
  46. <jetbrains.version>13.0</jetbrains.version>
  47. <tencentyun.version>1.1</tencentyun.version>
  48. <tencentyun.sdk.version>3.1.322</tencentyun.sdk.version>
  49. <version-plugin.version>2.8.1</version-plugin.version>
  50. <googleBar.version>3.4.0</googleBar.version>
  51. </properties>
  52. <dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>com.qmth.themis.common</groupId>
  56. <artifactId>themis-common</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.qmth.themis.business</groupId>
  61. <artifactId>themis-business</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.qmth.themis.mq</groupId>
  66. <artifactId>themis-mq</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-dependencies</artifactId>
  72. <version>${spring-boot.version}</version>
  73. <type>pom</type>
  74. <scope>import</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. <version>${mysql.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>${mybatis-plus.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>ch.qos.logback</groupId>
  88. <artifactId>logback-core</artifactId>
  89. <version>${logback.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>ch.qos.logback</groupId>
  93. <artifactId>logback-classic</artifactId>
  94. <version>${logback.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger2</artifactId>
  99. <version>${swagger2.version}</version>
  100. </dependency>
  101. <!-- <dependency>-->
  102. <!-- <groupId>com.github.xiaoymin</groupId>-->
  103. <!-- <artifactId>swagger-bootstrap-ui</artifactId>-->
  104. <!-- <version>${swagger2-bootstrap.version}</version>-->
  105. <!-- </dependency>-->
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-swagger-ui</artifactId>
  109. <version>${swagger2.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>druid</artifactId>
  114. <version>${druid.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.commons</groupId>
  118. <artifactId>commons-lang3</artifactId>
  119. <version>${commons.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-codec</groupId>
  123. <artifactId>commons-codec</artifactId>
  124. <version>${commons.codec.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.google.code.gson</groupId>
  128. <artifactId>gson</artifactId>
  129. <version>${gson.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.google.guava</groupId>
  133. <artifactId>guava</artifactId>
  134. <version>${guava.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.poi</groupId>
  138. <artifactId>poi-ooxml</artifactId>
  139. <version>${poi.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.poi</groupId>
  143. <artifactId>poi-ooxml-schemas</artifactId>
  144. <version>${poi.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>poi</artifactId>
  149. <version>${poi.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>commons-fileupload</groupId>
  153. <artifactId>commons-fileupload</artifactId>
  154. <version>${fileupload.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.aliyun.oss</groupId>
  158. <artifactId>aliyun-sdk-oss</artifactId>
  159. <version>${aliyun.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.alibaba</groupId>
  163. <artifactId>fastjson</artifactId>
  164. <version>${fastjson.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.fasterxml.jackson.core</groupId>
  168. <artifactId>jackson-core</artifactId>
  169. <version>${jackson.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.fasterxml.jackson.core</groupId>
  173. <artifactId>jackson-annotations</artifactId>
  174. <version>${jackson.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.fasterxml.jackson.core</groupId>
  178. <artifactId>jackson-databind</artifactId>
  179. <version>${jackson.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>cn.hutool</groupId>
  183. <artifactId>hutool-all</artifactId>
  184. <version>${hutool.version}</version>
  185. </dependency>
  186. <!-- aes PKCS7 -->
  187. <dependency>
  188. <groupId>org.bouncycastle</groupId>
  189. <artifactId>bcprov-jdk15on</artifactId>
  190. <version>${bcprov.version}</version>
  191. </dependency>
  192. <!-- redis -->
  193. <dependency>
  194. <groupId>org.springframework.data</groupId>
  195. <artifactId>spring-data-redis</artifactId>
  196. <version>${spring-boot.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>redis.clients</groupId>
  200. <artifactId>jedis</artifactId>
  201. <version>${redis.version}</version>
  202. </dependency>
  203. <!-- ehcache 缓存 -->
  204. <!-- <dependency>-->
  205. <!-- <groupId>net.sf.ehcache</groupId>-->
  206. <!-- <artifactId>ehcache</artifactId>-->
  207. <!-- <version>${ehcache.version}</version>-->
  208. <!-- </dependency>-->
  209. <!-- rocketmq -->
  210. <dependency>
  211. <groupId>org.apache.rocketmq</groupId>
  212. <artifactId>rocketmq-spring-boot-starter</artifactId>
  213. <version>${rocket.version}</version>
  214. </dependency>
  215. <!-- mongodb -->
  216. <dependency>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  219. <version>${spring-boot.version}</version>
  220. </dependency>
  221. <!--websocket-->
  222. <dependency>
  223. <groupId>org.springframework.boot</groupId>
  224. <artifactId>spring-boot-starter-websocket</artifactId>
  225. <version>${spring-boot.version}</version>
  226. </dependency>
  227. <!--quartz-->
  228. <dependency>
  229. <groupId>org.springframework.boot</groupId>
  230. <artifactId>spring-boot-starter-quartz</artifactId>
  231. <version>${spring-boot.version}</version>
  232. </dependency>
  233. <!--elasticsearch-->
  234. <dependency>
  235. <groupId>org.springframework.boot</groupId>
  236. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  237. <version>${spring-boot.version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.jetbrains</groupId>
  241. <artifactId>annotations</artifactId>
  242. <version>${jetbrains.version}</version>
  243. <scope>compile</scope>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.github.tencentyun</groupId>
  247. <artifactId>tls-sig-api-v2</artifactId>
  248. <version>${tencentyun.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.tencentcloudapi</groupId>
  252. <artifactId>tencentcloud-sdk-java</artifactId>
  253. <version>${tencentyun.sdk.version}</version>
  254. </dependency>
  255. <!-- <dependency>-->
  256. <!-- <groupId>com.google.zxing</groupId>-->
  257. <!-- <artifactId>core</artifactId>-->
  258. <!-- <version>${googleBar.version}</version>-->
  259. <!-- </dependency>-->
  260. <!-- <dependency>-->
  261. <!-- <groupId>com.google.zxing</groupId>-->
  262. <!-- <artifactId>javase</artifactId>-->
  263. <!-- <version>${googleBar.version}</version>-->
  264. <!-- </dependency>-->
  265. </dependencies>
  266. </dependencyManagement>
  267. <dependencies>
  268. <!-- 默认依赖测试JAR -->
  269. <dependency>
  270. <groupId>org.springframework.boot</groupId>
  271. <artifactId>spring-boot-starter-test</artifactId>
  272. <scope>test</scope>
  273. </dependency>
  274. </dependencies>
  275. <build>
  276. <plugins>
  277. <plugin>
  278. <groupId>org.apache.maven.plugins</groupId>
  279. <artifactId>maven-surefire-plugin</artifactId>
  280. <configuration>
  281. <skip>true</skip>
  282. <skipTests>true</skipTests>
  283. </configuration>
  284. </plugin>
  285. <plugin>
  286. <groupId>org.codehaus.mojo</groupId>
  287. <artifactId>versions-maven-plugin</artifactId>
  288. <version>${version-plugin.version}</version>
  289. <configuration>
  290. <generateBackupPoms>false</generateBackupPoms>
  291. </configuration>
  292. </plugin>
  293. </plugins>
  294. </build>
  295. </project>