后台服务
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.iformall</groupId>
  7. <artifactId>suimang</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0</version>
  10. <modules>
  11. <module>suimangOcr</module>
  12. <module>suimang-mybatis</module>
  13. <module>suimangService</module>
  14. <module>suimangVideo</module>
  15. <module>suimangCallback</module>
  16. <module>suimangAdmin</module>
  17. <module>suimangCApi</module>
  18. <module>suimangSchedule</module>
  19. <module>suimangMQConsumer</module>
  20. </modules>
  21. <parent>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-parent</artifactId>
  24. <version>2.2.5.RELEASE</version>
  25. <relativePath/>
  26. </parent>
  27. <properties>
  28. <weixin-java-common.version>3.7.0.B</weixin-java-common.version>
  29. <weixin-java-mp.version>3.7.0.B</weixin-java-mp.version>
  30. <weixin-java-miniapp.version>3.7.0.B</weixin-java-miniapp.version>
  31. <weixin-java-pay.version>3.7.0.B</weixin-java-pay.version>
  32. <weixin-java-open.version>3.7.0.B</weixin-java-open.version>
  33. <quartz.version>2.3.0</quartz.version>
  34. <log4j2.version>2.15.0</log4j2.version>
  35. </properties>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-tomcat</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-undertow</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-aop</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-amqp</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-cache</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-redis</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-configuration-processor</artifactId>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web-services</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-mail</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.flowable</groupId>
  82. <artifactId>flowable-spring-boot-starter-process</artifactId>
  83. <version>6.4.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <version>8.0.19</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.baomidou</groupId>
  93. <artifactId>mybatis-plus-boot-starter</artifactId>
  94. <version>3.2.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mybatis.spring.boot</groupId>
  98. <artifactId>mybatis-spring-boot-starter</artifactId>
  99. <version>2.1.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.pagehelper</groupId>
  103. <artifactId>pagehelper-spring-boot-starter</artifactId>
  104. <version>1.2.13</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.mybatis</groupId>
  108. <artifactId>mybatis</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>org.mybatis</groupId>
  112. <artifactId>mybatis-spring</artifactId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>druid</artifactId>
  119. <version>1.1.22</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework</groupId>
  123. <artifactId>spring-context-support</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-test</artifactId>
  128. <scope>test</scope>
  129. </dependency>
  130. <!-- rocketmq -->
  131. <dependency>
  132. <groupId>org.rocketmq.spring.boot</groupId>
  133. <artifactId>rocketmq-spring-boot-starter</artifactId>
  134. <version>1.0.0.RELEASE</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.commons</groupId>
  138. <artifactId>commons-lang3</artifactId>
  139. <version>3.8</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.google.guava</groupId>
  143. <artifactId>guava</artifactId>
  144. <version>26.0-jre</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.alibaba</groupId>
  148. <artifactId>fastjson</artifactId>
  149. <version>1.2.68</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.quartz-scheduler</groupId>
  153. <artifactId>quartz</artifactId>
  154. <version>${quartz.version}</version>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>com.mchange</groupId>
  158. <artifactId>c3p0</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>com.zaxxer</groupId>
  162. <artifactId>HikariCP-java6</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <!-- Swagger -->
  167. <dependency>
  168. <groupId>io.springfox</groupId>
  169. <artifactId>springfox-swagger2</artifactId>
  170. <version>2.8.0</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>io.springfox</groupId>
  174. <artifactId>springfox-swagger-ui</artifactId>
  175. <version>2.8.0</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>io.springfox</groupId>
  179. <artifactId>springfox-spring-web</artifactId>
  180. <version>2.8.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.fasterxml.jackson.core</groupId>
  184. <artifactId>jackson-core</artifactId>
  185. <version>2.10.3</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.fasterxml.jackson.core</groupId>
  189. <artifactId>jackson-databind</artifactId>
  190. <version>2.10.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>javax.xml.bind</groupId>
  194. <artifactId>jaxb-api</artifactId>
  195. <version>2.3.0</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.projectlombok</groupId>
  199. <artifactId>lombok</artifactId>
  200. <version>1.18.10</version>
  201. <scope>provided</scope>
  202. </dependency>
  203. <!-- </dependencyManagement> -->
  204. <!-- <dependencies> -->
  205. <!-- <dependency> -->
  206. <!-- <groupId>com.iformall</groupId> -->
  207. <!-- <artifactId>base</artifactId> -->
  208. <!-- <version>1.0</version> -->
  209. <!-- </dependency> -->
  210. <!-- <dependency> -->
  211. <!-- <groupId>com.iformall</groupId> -->
  212. <!-- <artifactId>freemarker</artifactId> -->
  213. <!-- <version>1.0</version> -->
  214. <!-- </dependency> -->
  215. <dependency>
  216. <groupId>org.apache.shiro</groupId>
  217. <artifactId>shiro-core</artifactId>
  218. <version>1.4.0</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.apache.shiro</groupId>
  222. <artifactId>shiro-spring</artifactId>
  223. <version>1.4.0</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.crazycake</groupId>
  227. <artifactId>shiro-redis</artifactId>
  228. <version>3.1.0</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.jdom</groupId>
  232. <artifactId>jdom2</artifactId>
  233. <version>2.0.6</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.bouncycastle</groupId>
  237. <artifactId>bcprov-jdk15on</artifactId>
  238. <version>1.60</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.bouncycastle</groupId>
  242. <artifactId>bcpkix-jdk15on</artifactId>
  243. <version>1.60</version>
  244. </dependency>
  245. <!-- <dependency> -->
  246. <!-- <groupId>net.coobird</groupId> -->
  247. <!-- <artifactId>thumbnailator</artifactId> -->
  248. <!-- <version>0.4.8</version> -->
  249. <!-- </dependency> -->
  250. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  251. <dependency>
  252. <groupId>commons-io</groupId>
  253. <artifactId>commons-io</artifactId>
  254. <version>2.6</version>
  255. </dependency>
  256. <!--easypoi-->
  257. <dependency>
  258. <groupId>cn.afterturn</groupId>
  259. <artifactId>easypoi-spring-boot-starter</artifactId>
  260. <version>4.1.3.A</version>
  261. </dependency>
  262. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  263. <dependency>
  264. <groupId>org.apache.httpcomponents</groupId>
  265. <artifactId>httpclient</artifactId>
  266. <version>4.5.3</version>
  267. </dependency>
  268. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  269. <dependency>
  270. <groupId>com.squareup.okhttp3</groupId>
  271. <artifactId>okhttp</artifactId>
  272. <version>3.14.0</version>
  273. </dependency>
  274. <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
  275. <dependency>
  276. <groupId>org.dom4j</groupId>
  277. <artifactId>dom4j</artifactId>
  278. <version>2.1.1</version>
  279. </dependency>
  280. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  281. <dependency>
  282. <groupId>com.google.code.gson</groupId>
  283. <artifactId>gson</artifactId>
  284. <version>2.8.5</version>
  285. </dependency>
  286. <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
  287. <dependency>
  288. <groupId>com.thoughtworks.xstream</groupId>
  289. <artifactId>xstream</artifactId>
  290. <version>1.4.10</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>com.github.binarywang</groupId>
  294. <artifactId>weixin-java-common</artifactId>
  295. <version>${weixin-java-common.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>com.github.binarywang</groupId>
  299. <artifactId>weixin-java-miniapp</artifactId>
  300. <version>${weixin-java-miniapp.version}</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>com.github.binarywang</groupId>
  304. <artifactId>weixin-java-mp</artifactId>
  305. <version>${weixin-java-mp.version}</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>com.github.binarywang</groupId>
  309. <artifactId>weixin-java-pay</artifactId>
  310. <version>${weixin-java-pay.version}</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>com.github.binarywang</groupId>
  314. <artifactId>weixin-java-open</artifactId>
  315. <version>${weixin-java-open.version}</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>com.github.ulisesbocchio</groupId>
  319. <artifactId>jasypt-spring-boot</artifactId>
  320. <version>2.1.0</version>
  321. </dependency>
  322. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  323. <dependency>
  324. <groupId>com.belerweb</groupId>
  325. <artifactId>pinyin4j</artifactId>
  326. <version>2.5.0</version>
  327. </dependency>
  328. <!--阿里云的短信服务SDK-->
  329. <dependency>
  330. <groupId>com.aliyun</groupId>
  331. <artifactId>aliyun-java-sdk-core</artifactId>
  332. <version>4.5.2</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.aliyun</groupId>
  336. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  337. <version>2.1.0</version>
  338. </dependency>
  339. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  340. <dependency>
  341. <groupId>com.aliyun.oss</groupId>
  342. <artifactId>aliyun-sdk-oss</artifactId>
  343. <version>3.10.2</version>
  344. </dependency>
  345. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  346. <dependency>
  347. <groupId>commons-fileupload</groupId>
  348. <artifactId>commons-fileupload</artifactId>
  349. <version>1.4</version>
  350. </dependency>
  351. <!-- https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-jpeg -->
  352. <dependency>
  353. <groupId>com.twelvemonkeys.imageio</groupId>
  354. <artifactId>imageio-jpeg</artifactId>
  355. <version>3.6</version>
  356. </dependency>
  357. <!-- <dependency>
  358. <groupId>com.sun</groupId>
  359. <artifactId>tools</artifactId>
  360. <version>1.8.0</version>
  361. <scope>system</scope>
  362. <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
  363. </dependency> -->
  364. </dependencies>
  365. <!--
  366. <build>
  367. <plugins>
  368. <plugin>
  369. <groupId>org.apache.maven.plugins</groupId>
  370. <artifactId>maven-compiler-plugin</artifactId>
  371. <version>3.1</version>
  372. <configuration>
  373. <source>1.8</source>
  374. <target>1.8</target>
  375. </configuration>
  376. </plugin>
  377. </plugins>
  378. </build>
  379. -->
  380. </project>