北京机场
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.

pom.xml 14 KiB

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