pom.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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.java110</groupId>
  7. <artifactId>MicroCommunity</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>java110-bean</module>
  12. <module>java110-interface</module>
  13. <module>java110-utils</module>
  14. <module>java110-core</module>
  15. <module>java110-service</module>
  16. <module>java110-db</module>
  17. <module>service-user</module>
  18. <module>service-fee</module>
  19. <module>service-eureka</module>
  20. <module>service-store</module>
  21. <module>service-order</module>
  22. <module>service-api</module>
  23. <module>service-community</module>
  24. <module>service-job</module>
  25. <module>service-common</module>
  26. <module>service-report</module>
  27. <module>service-acct</module>
  28. <module>service-oa</module>
  29. <module>service-dev</module>
  30. </modules>
  31. <parent>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-parent</artifactId>
  34. <version>2.0.4.RELEASE</version>
  35. <relativePath/> <!-- lookup parent from repository -->
  36. </parent>
  37. <properties>
  38. <maven.compile.target>1.8</maven.compile.target>
  39. <sourceEncoding>UTF-8</sourceEncoding>
  40. <spring-boot>2.0.4.RELEASE</spring-boot>
  41. <mybatis.version>3.5.6</mybatis.version>
  42. <microcommunity.version>1.0-SNAPSHOT</microcommunity.version>
  43. <dubbo.version>2.5.4-SNAPSHOT</dubbo.version>
  44. <logback.vaersion>1.2.9</logback.vaersion>
  45. <apache.common.lang3.version>3.4</apache.common.lang3.version>
  46. <mybatis.version>3.5.6</mybatis.version>
  47. <log4j.version>2.17.1</log4j.version>
  48. <tomcat.servlet.version>6.0.37</tomcat.servlet.version>
  49. <druid.version>1.1.10</druid.version>
  50. <mybatis-spring.version>1.3.1</mybatis-spring.version>
  51. <mysql.version>8.0.28</mysql.version>
  52. <commons-pool2.version>2.2</commons-pool2.version>
  53. <commons-collections.version>3.2.1</commons-collections.version>
  54. <commons-fileupload.version>1.3.3</commons-fileupload.version>
  55. <commons-codec.version>1.6</commons-codec.version>
  56. <commons-logging.version>1.1.1</commons-logging.version>
  57. <commons-lang.version>2.5</commons-lang.version>
  58. <commons-beanutils.version>1.8.0</commons-beanutils.version>
  59. <slf4j.version>1.7.7</slf4j.version>
  60. <logback.version>1.2.9</logback.version>
  61. <activemq.version>5.7.0</activemq.version>
  62. <xbean.version>3.18</xbean.version>
  63. <axis.version>1.4</axis.version>
  64. <httpclient.verion>3.1</httpclient.verion>
  65. <spring.version>5.0.8.RELEASE</spring.version>
  66. <zookeeper.version>3.4.14</zookeeper.version>
  67. <swagger.version>2.5.0</swagger.version>
  68. <pinyin4j.version>2.5.0</pinyin4j.version>
  69. <oss.aliyun>2.8.2</oss.aliyun>
  70. </properties>
  71. <dependencyManagement>
  72. <dependencies>
  73. <dependency>
  74. <groupId>org.springframework.cloud</groupId>
  75. <artifactId>spring-cloud-dependencies</artifactId>
  76. <version>Finchley.SR3</version>
  77. <type>pom</type>
  78. <scope>import</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-context-support</artifactId>
  83. <version>${spring.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.belerweb</groupId>
  87. <artifactId>pinyin4j</artifactId>
  88. <version>${pinyin4j.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>1.2.83</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mybatis.spring.boot</groupId>
  97. <artifactId>mybatis-spring-boot-starter</artifactId>
  98. <version>1.1.1</version>
  99. </dependency>
  100. <!--mapper-->
  101. <dependency>
  102. <groupId>tk.mybatis</groupId>
  103. <artifactId>mapper-spring-boot-starter</artifactId>
  104. <version>1.1.0</version>
  105. </dependency>
  106. <!--pagehelper-->
  107. <dependency>
  108. <groupId>com.github.pagehelper</groupId>
  109. <artifactId>pagehelper-spring-boot-starter</artifactId>
  110. <version>1.1.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.auth0</groupId>
  114. <artifactId>java-jwt</artifactId>
  115. <version>3.3.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.java110</groupId>
  119. <artifactId>java110-utils</artifactId>
  120. <version>${microcommunity.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.java110</groupId>
  124. <artifactId>java110-bean</artifactId>
  125. <version>${microcommunity.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.java110</groupId>
  129. <artifactId>java110-core</artifactId>
  130. <version>${microcommunity.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.java110</groupId>
  134. <artifactId>java110-service</artifactId>
  135. <version>${microcommunity.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.java110</groupId>
  139. <artifactId>java110-interface</artifactId>
  140. <version>${microcommunity.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.java110</groupId>
  144. <artifactId>java110-db</artifactId>
  145. <version>${microcommunity.version}</version>
  146. </dependency>
  147. <!-- logback 日志组件支持 -->
  148. <dependency>
  149. <groupId>org.slf4j</groupId>
  150. <artifactId>slf4j-api</artifactId>
  151. <version>1.7.25</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>ch.qos.logback</groupId>
  155. <artifactId>logback-core</artifactId>
  156. <version>${logback.vaersion}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>ch.qos.logback</groupId>
  160. <artifactId>logback-access</artifactId>
  161. <version>${logback.vaersion}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>ch.qos.logback</groupId>
  165. <artifactId>logback-classic</artifactId>
  166. <version>${logback.vaersion}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.logging.log4j</groupId>
  170. <artifactId>log4j-core</artifactId>
  171. <version>${log4j.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.logging.log4j</groupId>
  175. <artifactId>log4j-api</artifactId>
  176. <version>${log4j.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.logging.log4j</groupId>
  180. <artifactId>log4j-web</artifactId>
  181. <version>${log4j.version}</version>
  182. </dependency>
  183. <!-- 桥接:告诉Slf4j使用Log4j2 -->
  184. <dependency>
  185. <groupId>org.apache.logging.log4j</groupId>
  186. <artifactId>log4j-slf4j-impl</artifactId>
  187. <version>${log4j.version}</version>
  188. </dependency>
  189. <!-- 桥接:告诉commons logging使用Log4j2 -->
  190. <dependency>
  191. <groupId>org.apache.logging.log4j</groupId>
  192. <artifactId>log4j-jcl</artifactId>
  193. <version>${log4j.version}</version>
  194. </dependency>
  195. <!-- https://mvnrepository.com/artifact/org.slf4j/log4j-over-slf4j -->
  196. <!-- <dependency>-->
  197. <!-- <groupId>io.github.openfeign</groupId>-->
  198. <!-- <artifactId>feign-okhttp</artifactId>-->
  199. <!-- <version>10.1.0</version>-->
  200. <!-- </dependency>-->
  201. <dependency>
  202. <groupId>org.slf4j</groupId>
  203. <artifactId>log4j-over-slf4j</artifactId>
  204. <version>1.7.30</version>
  205. </dependency>
  206. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  207. <dependency>
  208. <groupId>com.mchange</groupId>
  209. <artifactId>c3p0</artifactId>
  210. <version>0.9.5.4</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.thymeleaf</groupId>
  214. <artifactId>thymeleaf</artifactId>
  215. <version>3.0.9.RELEASE</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.jcraft</groupId>
  219. <artifactId>jsch</artifactId>
  220. <version>0.1.49</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.activemq</groupId>
  224. <artifactId>activemq-core</artifactId>
  225. <version>${activemq.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.activemq</groupId>
  229. <artifactId>activemq-pool</artifactId>
  230. <version>${activemq.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.springframework</groupId>
  234. <artifactId>spring-jms</artifactId>
  235. <version>${spring.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.xbean</groupId>
  239. <artifactId>xbean-spring</artifactId>
  240. <version>${xbean.version}</version>
  241. </dependency>
  242. <!-- apache commons 包 主要使用一些工具类 -->
  243. <dependency>
  244. <groupId>org.apache.commons</groupId>
  245. <artifactId>commons-lang3</artifactId>
  246. <version>${apache.common.lang3.version}</version>
  247. </dependency>
  248. <!-- mybatis 依赖包 -->
  249. <dependency>
  250. <groupId>org.mybatis</groupId>
  251. <artifactId>mybatis</artifactId>
  252. <version>${mybatis.version}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.mybatis</groupId>
  256. <artifactId>mybatis-spring</artifactId>
  257. <version>${mybatis-spring.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>mysql</groupId>
  261. <artifactId>mysql-connector-java</artifactId>
  262. <version>${mysql.version}</version>
  263. </dependency>
  264. <!-- 阿里 数据源相关jar -->
  265. <dependency>
  266. <groupId>com.alibaba</groupId>
  267. <artifactId>druid</artifactId>
  268. <version>${druid.version}</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>commons-validator</groupId>
  272. <artifactId>commons-validator</artifactId>
  273. <version>1.3.1</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>commons-beanutils</groupId>
  277. <artifactId>commons-beanutils</artifactId>
  278. <version>1.9.4</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.commons</groupId>
  282. <artifactId>commons-pool2</artifactId>
  283. <version>${commons-pool2.version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>commons-fileupload</groupId>
  287. <artifactId>commons-fileupload</artifactId>
  288. <version>${commons-fileupload.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>commons-codec</groupId>
  292. <artifactId>commons-codec</artifactId>
  293. <version>${commons-codec.version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>commons-net</groupId>
  297. <artifactId>commons-net</artifactId>
  298. <version>3.3</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>commons-httpclient</groupId>
  302. <artifactId>commons-httpclient</artifactId>
  303. <version>${httpclient.verion}</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.apache.shardingsphere</groupId>
  307. <artifactId>sharding-jdbc-core</artifactId>
  308. <version>4.0.0-RC1</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>net.sf.ehcache</groupId>
  312. <artifactId>ehcache</artifactId>
  313. <version>2.10.2</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>redis.clients</groupId>
  317. <artifactId>jedis</artifactId>
  318. <version>2.9.0</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.quartz-scheduler</groupId>
  322. <artifactId>quartz</artifactId>
  323. <version>2.3.2</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.springframework.session</groupId>
  327. <artifactId>spring-session-data-redis</artifactId>
  328. <version>2.0.3.RELEASE</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.beanshell</groupId>
  332. <artifactId>bsh-core</artifactId>
  333. <version>2.0b4</version>
  334. </dependency>
  335. <!-- https://mvnrepository.com/artifact/org.javassist/javassist -->
  336. <dependency>
  337. <groupId>org.javassist</groupId>
  338. <artifactId>javassist</artifactId>
  339. <version>3.25.0-GA</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.apache.zookeeper</groupId>
  343. <artifactId>zookeeper</artifactId>
  344. <version>${zookeeper.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>io.springfox</groupId>
  348. <artifactId>springfox-swagger2</artifactId>
  349. <version>${swagger.version}</version>
  350. </dependency>
  351. <!-- swagger-ui -->
  352. <dependency>
  353. <groupId>io.springfox</groupId>
  354. <artifactId>springfox-swagger-ui</artifactId>
  355. <version>${swagger.version}</version>
  356. </dependency>
  357. <dependency>
  358. <groupId>net.sourceforge.nekohtml</groupId>
  359. <artifactId>nekohtml</artifactId>
  360. <version>1.9.22</version>
  361. </dependency>
  362. <dependency>
  363. <groupId>com.aliyun</groupId>
  364. <artifactId>aliyun-java-sdk-core</artifactId>
  365. <version>4.4.6</version>
  366. </dependency>
  367. <dependency>
  368. <groupId>com.aliyun</groupId>
  369. <artifactId>aliyun-java-sdk-ecs</artifactId>
  370. <version>4.17.6</version>
  371. </dependency>
  372. <!--flowable工作流依赖
  373. <dependency>
  374. <groupId>org.flowable</groupId>
  375. <artifactId>flowable-spring-boot-starter</artifactId>
  376. <version>6.4.1</version>
  377. </dependency>
  378. -->
  379. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  380. <dependency>
  381. <groupId>org.jsoup</groupId>
  382. <artifactId>jsoup</artifactId>
  383. <version>1.14.2</version>
  384. </dependency>
  385. <!-- 引入poi,解析workbook视图 -->
  386. <dependency>
  387. <groupId>org.apache.poi</groupId>
  388. <artifactId>poi-ooxml</artifactId>
  389. <version>3.17</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>org.apache.poi</groupId>
  393. <artifactId>poi-ooxml-schemas</artifactId>
  394. <version>3.17</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>org.apache.poi</groupId>
  398. <artifactId>poi</artifactId>
  399. <version>3.17</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>org.activiti</groupId>
  403. <artifactId>activiti-spring</artifactId>
  404. <version>6.0.0</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>org.activiti</groupId>
  408. <artifactId>activiti-bpmn-layout</artifactId>
  409. <version>6.0.0.RC1</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.activiti</groupId>
  413. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  414. <version>6.0.0</version>
  415. <exclusions>
  416. <exclusion>
  417. <groupId>org.mybatis</groupId>
  418. <artifactId>mybatis</artifactId>
  419. </exclusion>
  420. </exclusions>
  421. </dependency>
  422. <dependency>
  423. <groupId>com.tencentcloudapi</groupId>
  424. <artifactId>tencentcloud-sdk-java</artifactId>
  425. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  426. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询最新版本 -->
  427. <version>3.0.112</version>
  428. </dependency>
  429. <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
  430. <dependency>
  431. <groupId>com.aliyun.oss</groupId>
  432. <artifactId>aliyun-sdk-oss</artifactId>
  433. <version>${oss.aliyun}</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>com.alipay.sdk</groupId>
  437. <artifactId>alipay-sdk-java</artifactId>
  438. <version>4.10.111.ALL</version>
  439. </dependency>
  440. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  441. <dependency>
  442. <groupId>commons-codec</groupId>
  443. <artifactId>commons-codec</artifactId>
  444. <version>1.15</version>
  445. </dependency>
  446. <dependency>
  447. <groupId>com.qcloud</groupId>
  448. <artifactId>cos_api</artifactId>
  449. <version>5.6.69</version>
  450. </dependency>
  451. <dependency>
  452. <groupId>org.mybatis</groupId>
  453. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  454. <version>1.0.2</version>
  455. </dependency>
  456. </dependencies>
  457. </dependencyManagement>
  458. <dependencies>
  459. <dependency>
  460. <groupId>junit</groupId>
  461. <artifactId>junit</artifactId>
  462. <scope>test</scope>
  463. </dependency>
  464. <dependency>
  465. <groupId>org.springframework.boot</groupId>
  466. <artifactId>spring-boot-starter-web</artifactId>
  467. </dependency>
  468. <dependency>
  469. <groupId>org.springframework.boot</groupId>
  470. <artifactId>spring-boot-starter-test</artifactId>
  471. <scope>test</scope>
  472. </dependency>
  473. <dependency>
  474. <groupId>org.springframework.boot</groupId>
  475. <artifactId>spring-boot-starter-actuator</artifactId>
  476. </dependency>
  477. <dependency>
  478. <groupId>org.springframework.boot</groupId>
  479. <artifactId>spring-boot-configuration-processor</artifactId>
  480. <optional>true</optional>
  481. </dependency>
  482. </dependencies>
  483. <build>
  484. <plugins>
  485. <plugin>
  486. <groupId>org.apache.maven.plugins</groupId>
  487. <artifactId>maven-javadoc-plugin</artifactId>
  488. </plugin>
  489. <plugin>
  490. <groupId>org.apache.maven.plugins</groupId>
  491. <artifactId>maven-surefire-plugin</artifactId>
  492. <configuration>
  493. <skipTests>true</skipTests>
  494. </configuration>
  495. </plugin>
  496. <plugin>
  497. <artifactId>maven-source-plugin</artifactId>
  498. <configuration>
  499. <attach>true</attach>
  500. </configuration>
  501. <executions>
  502. <execution>
  503. <phase>compile</phase>
  504. <goals>
  505. <goal>jar</goal>
  506. </goals>
  507. </execution>
  508. </executions>
  509. </plugin>
  510. </plugins>
  511. </build>
  512. <distributionManagement>
  513. <repository>
  514. <!--发行版本-->
  515. <id>releases</id>
  516. <url>http://maven.homecommunity.cn:8081/repository/maven-releases/</url>
  517. </repository>
  518. <snapshotRepository>
  519. <!--快照版本-->
  520. <id>snapshots</id>
  521. <url>http://maven.homecommunity.cn:8081/repository/maven-snapshots/</url>
  522. </snapshotRepository>
  523. </distributionManagement>
  524. </project>