gpt壳项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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