pom.xml 22 KB

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