pom.xml 22 KB

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