后台服务
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.

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