后台服务
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

427 wiersze
15 KiB

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