pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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.0</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.3.1</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. <version-plugin.version>2.8.1</version-plugin.version>
  49. </properties>
  50. <dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>com.qmth.themis.common</groupId>
  54. <artifactId>themis-common</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qmth.themis.business</groupId>
  59. <artifactId>themis-business</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.qmth.themis.mq</groupId>
  64. <artifactId>themis-mq</artifactId>
  65. <version>${project.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-dependencies</artifactId>
  70. <version>${spring-boot.version}</version>
  71. <type>pom</type>
  72. <scope>import</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. <version>${mysql.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-boot-starter</artifactId>
  82. <version>${mybatis-plus.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>ch.qos.logback</groupId>
  86. <artifactId>logback-core</artifactId>
  87. <version>${logback.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>ch.qos.logback</groupId>
  91. <artifactId>logback-classic</artifactId>
  92. <version>${logback.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger2</artifactId>
  97. <version>${swagger2.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.github.xiaoymin</groupId>
  101. <artifactId>swagger-bootstrap-ui</artifactId>
  102. <version>${swagger2-bootstrap.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>druid</artifactId>
  107. <version>${druid.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-lang3</artifactId>
  112. <version>${commons.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-codec</groupId>
  116. <artifactId>commons-codec</artifactId>
  117. <version>${commons.codec.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.google.code.gson</groupId>
  121. <artifactId>gson</artifactId>
  122. <version>${gson.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.google.guava</groupId>
  126. <artifactId>guava</artifactId>
  127. <version>${guava.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi-ooxml</artifactId>
  132. <version>${poi.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.poi</groupId>
  136. <artifactId>poi-ooxml-schemas</artifactId>
  137. <version>${poi.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi</artifactId>
  142. <version>${poi.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-fileupload</groupId>
  146. <artifactId>commons-fileupload</artifactId>
  147. <version>${fileupload.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.aliyun.oss</groupId>
  151. <artifactId>aliyun-sdk-oss</artifactId>
  152. <version>${aliyun.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>fastjson</artifactId>
  157. <version>${fastjson.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.fasterxml.jackson.core</groupId>
  161. <artifactId>jackson-core</artifactId>
  162. <version>${jackson.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.fasterxml.jackson.core</groupId>
  166. <artifactId>jackson-annotations</artifactId>
  167. <version>${jackson.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.fasterxml.jackson.core</groupId>
  171. <artifactId>jackson-databind</artifactId>
  172. <version>${jackson.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>cn.hutool</groupId>
  176. <artifactId>hutool-all</artifactId>
  177. <version>${hutool.version}</version>
  178. </dependency>
  179. <!-- aes PKCS7 -->
  180. <dependency>
  181. <groupId>org.bouncycastle</groupId>
  182. <artifactId>bcprov-jdk15on</artifactId>
  183. <version>${bcprov.version}</version>
  184. </dependency>
  185. <!-- redis -->
  186. <dependency>
  187. <groupId>org.springframework.data</groupId>
  188. <artifactId>spring-data-redis</artifactId>
  189. <version>${spring-boot.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>redis.clients</groupId>
  193. <artifactId>jedis</artifactId>
  194. <version>${redis.version}</version>
  195. </dependency>
  196. <!-- ehcache 缓存 -->
  197. <!-- <dependency>-->
  198. <!-- <groupId>net.sf.ehcache</groupId>-->
  199. <!-- <artifactId>ehcache</artifactId>-->
  200. <!-- <version>${ehcache.version}</version>-->
  201. <!-- </dependency>-->
  202. <!-- rocketmq -->
  203. <dependency>
  204. <groupId>org.apache.rocketmq</groupId>
  205. <artifactId>rocketmq-spring-boot-starter</artifactId>
  206. <version>${rocket.version}</version>
  207. </dependency>
  208. <!-- mongodb -->
  209. <dependency>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  212. <version>${spring-boot.version}</version>
  213. </dependency>
  214. <!--websocket-->
  215. <dependency>
  216. <groupId>org.springframework.boot</groupId>
  217. <artifactId>spring-boot-starter-websocket</artifactId>
  218. <version>${spring-boot.version}</version>
  219. </dependency>
  220. <!--quartz-->
  221. <dependency>
  222. <groupId>org.springframework.boot</groupId>
  223. <artifactId>spring-boot-starter-quartz</artifactId>
  224. <version>${spring-boot.version}</version>
  225. </dependency>
  226. <!--elasticsearch-->
  227. <dependency>
  228. <groupId>org.springframework.boot</groupId>
  229. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  230. <version>${spring-boot.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.jetbrains</groupId>
  234. <artifactId>annotations</artifactId>
  235. <version>${jetbrains.version}</version>
  236. <scope>compile</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.github.tencentyun</groupId>
  240. <artifactId>tls-sig-api-v2</artifactId>
  241. <version>${tencentyun.version}</version>
  242. </dependency>
  243. </dependencies>
  244. </dependencyManagement>
  245. <dependencies>
  246. <!-- 默认依赖测试JAR -->
  247. <dependency>
  248. <groupId>org.springframework.boot</groupId>
  249. <artifactId>spring-boot-starter-test</artifactId>
  250. <scope>test</scope>
  251. </dependency>
  252. </dependencies>
  253. <build>
  254. <plugins>
  255. <plugin>
  256. <groupId>org.apache.maven.plugins</groupId>
  257. <artifactId>maven-surefire-plugin</artifactId>
  258. <configuration>
  259. <skip>true</skip>
  260. <skipTests>true</skipTests>
  261. </configuration>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.codehaus.mojo</groupId>
  265. <artifactId>versions-maven-plugin</artifactId>
  266. <version>${version-plugin.version}</version>
  267. <configuration>
  268. <generateBackupPoms>false</generateBackupPoms>
  269. </configuration>
  270. </plugin>
  271. </plugins>
  272. </build>
  273. </project>