pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  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>WebService</module>
  27. <module>java110-logAgent</module>
  28. <module>zipkin</module>
  29. <module>ShopService</module>
  30. <module>CommentService</module>
  31. <module>Api</module>
  32. <module>CommunityService</module>
  33. <module>java110-code-generator</module>
  34. <module>java110-db</module>
  35. <module>JobService</module>
  36. <module>CommonService</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>1.2.17</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. </properties>
  77. <dependencyManagement>
  78. <dependencies>
  79. <dependency>
  80. <groupId>org.springframework.cloud</groupId>
  81. <artifactId>spring-cloud-dependencies</artifactId>
  82. <version>Finchley.SR3</version>
  83. <type>pom</type>
  84. <scope>import</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-context-support</artifactId>
  89. <version>${spring.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>fastjson</artifactId>
  94. <version>1.2.28</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mybatis.spring.boot</groupId>
  98. <artifactId>mybatis-spring-boot-starter</artifactId>
  99. <version>1.1.1</version>
  100. </dependency>
  101. <!--mapper-->
  102. <dependency>
  103. <groupId>tk.mybatis</groupId>
  104. <artifactId>mapper-spring-boot-starter</artifactId>
  105. <version>1.1.0</version>
  106. </dependency>
  107. <!--pagehelper-->
  108. <dependency>
  109. <groupId>com.github.pagehelper</groupId>
  110. <artifactId>pagehelper-spring-boot-starter</artifactId>
  111. <version>1.1.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.auth0</groupId>
  115. <artifactId>java-jwt</artifactId>
  116. <version>3.3.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.java110</groupId>
  120. <artifactId>java110-utils</artifactId>
  121. <version>${microcommunity.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.java110</groupId>
  125. <artifactId>java110-bean</artifactId>
  126. <version>${microcommunity.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.java110</groupId>
  130. <artifactId>java110-event</artifactId>
  131. <version>${microcommunity.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.java110</groupId>
  135. <artifactId>java110-core</artifactId>
  136. <version>${microcommunity.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.java110</groupId>
  140. <artifactId>java110-service</artifactId>
  141. <version>${microcommunity.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.java110</groupId>
  145. <artifactId>java110-config</artifactId>
  146. <version>${microcommunity.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.java110</groupId>
  150. <artifactId>java110-cacheAgent</artifactId>
  151. <version>${microcommunity.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.java110</groupId>
  155. <artifactId>java110-logAgent</artifactId>
  156. <version>${microcommunity.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.java110</groupId>
  160. <artifactId>java110-db</artifactId>
  161. <version>${microcommunity.version}</version>
  162. </dependency>
  163. <!-- logback 日志组件支持 -->
  164. <dependency>
  165. <groupId>org.slf4j</groupId>
  166. <artifactId>slf4j-api</artifactId>
  167. <version>1.7.25</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>ch.qos.logback</groupId>
  171. <artifactId>logback-core</artifactId>
  172. <version>${logback.vaersion}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>ch.qos.logback</groupId>
  176. <artifactId>logback-access</artifactId>
  177. <version>${logback.vaersion}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>ch.qos.logback</groupId>
  181. <artifactId>logback-classic</artifactId>
  182. <version>${logback.vaersion}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>log4j</groupId>
  186. <artifactId>log4j</artifactId>
  187. <version>1.2.17</version>
  188. </dependency>
  189. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  190. <dependency>
  191. <groupId>com.mchange</groupId>
  192. <artifactId>c3p0</artifactId>
  193. <version>0.9.5.4</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.thymeleaf</groupId>
  197. <artifactId>thymeleaf</artifactId>
  198. <version>3.0.9.RELEASE</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.activemq</groupId>
  202. <artifactId>activemq-core</artifactId>
  203. <version>${activemq.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.apache.activemq</groupId>
  207. <artifactId>activemq-pool</artifactId>
  208. <version>${activemq.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.springframework</groupId>
  212. <artifactId>spring-jms</artifactId>
  213. <version>${spring.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.xbean</groupId>
  217. <artifactId>xbean-spring</artifactId>
  218. <version>${xbean.version}</version>
  219. </dependency>
  220. <!-- apache commons 包 主要使用一些工具类 -->
  221. <dependency>
  222. <groupId>org.apache.commons</groupId>
  223. <artifactId>commons-lang3</artifactId>
  224. <version>${apache.common.lang3.version}</version>
  225. </dependency>
  226. <!-- mybatis 依赖包 -->
  227. <dependency>
  228. <groupId>org.mybatis</groupId>
  229. <artifactId>mybatis</artifactId>
  230. <version>${mybatis.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.mybatis</groupId>
  234. <artifactId>mybatis-spring</artifactId>
  235. <version>${mybatis-spring.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>mysql</groupId>
  239. <artifactId>mysql-connector-java</artifactId>
  240. <version>${mysql.version}</version>
  241. </dependency>
  242. <!-- 阿里 数据源相关jar -->
  243. <dependency>
  244. <groupId>com.alibaba</groupId>
  245. <artifactId>druid</artifactId>
  246. <version>${druid.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>commons-validator</groupId>
  250. <artifactId>commons-validator</artifactId>
  251. <version>1.3.1</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>commons-beanutils</groupId>
  255. <artifactId>commons-beanutils</artifactId>
  256. <version>1.9.3</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.apache.commons</groupId>
  260. <artifactId>commons-pool2</artifactId>
  261. <version>${commons-pool2.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>commons-fileupload</groupId>
  265. <artifactId>commons-fileupload</artifactId>
  266. <version>${commons-fileupload.version}</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>commons-codec</groupId>
  270. <artifactId>commons-codec</artifactId>
  271. <version>${commons-codec.version}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>commons-net</groupId>
  275. <artifactId>commons-net</artifactId>
  276. <version>3.3</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>commons-httpclient</groupId>
  280. <artifactId>commons-httpclient</artifactId>
  281. <version>${httpclient.verion}</version>
  282. </dependency>
  283. <!--<dependency>
  284. <groupId>io.shardingsphere</groupId>
  285. <artifactId>sharding-jdbc</artifactId>
  286. <version>3.0.0.M3</version>
  287. </dependency>-->
  288. <!--<dependency>
  289. <groupId>io.shardingsphere</groupId>
  290. <artifactId>sharding-jdbc-core</artifactId>
  291. <version>3.1.0</version>
  292. </dependency>-->
  293. <dependency>
  294. <groupId>org.apache.shardingsphere</groupId>
  295. <artifactId>sharding-jdbc-core</artifactId>
  296. <version>4.0.0-RC1</version>
  297. </dependency>
  298. <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2
  299. <dependency>
  300. <groupId>org.apache.axis</groupId>
  301. <artifactId>axis</artifactId>
  302. <version>${axis.version}</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.axis</groupId>
  306. <artifactId>axis-jaxrpc</artifactId>
  307. <version>${axis.version}</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.apache.axis</groupId>
  311. <artifactId>axis-saaj</artifactId>
  312. <version>${axis.version}</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>wsdl4j</groupId>
  316. <artifactId>wsdl4j</artifactId>
  317. <version>${axis.version}</version>
  318. </dependency>
  319. -->
  320. <dependency>
  321. <groupId>net.sf.ehcache</groupId>
  322. <artifactId>ehcache</artifactId>
  323. <version>2.10.2</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>redis.clients</groupId>
  327. <artifactId>jedis</artifactId>
  328. <version>2.9.0</version>
  329. </dependency>
  330. <!-- <dependency>
  331. <groupId>org.quartz-scheduler</groupId>
  332. <artifactId>quartz</artifactId>
  333. <version>2.3.0</version>
  334. </dependency>-->
  335. <dependency>
  336. <groupId>org.quartz-scheduler</groupId>
  337. <artifactId>quartz</artifactId>
  338. <version>2.3.0</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>org.springframework.session</groupId>
  342. <artifactId>spring-session-data-redis</artifactId>
  343. <version>2.0.3.RELEASE</version>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.beanshell</groupId>
  347. <artifactId>bsh-core</artifactId>
  348. <version>2.0b4</version>
  349. </dependency>
  350. <!-- https://mvnrepository.com/artifact/org.javassist/javassist -->
  351. <dependency>
  352. <groupId>org.javassist</groupId>
  353. <artifactId>javassist</artifactId>
  354. <version>3.25.0-GA</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.apache.zookeeper</groupId>
  358. <artifactId>zookeeper</artifactId>
  359. <version>${zookeeper.version}</version>
  360. </dependency>
  361. <dependency>
  362. <groupId>io.springfox</groupId>
  363. <artifactId>springfox-swagger2</artifactId>
  364. <version>${swagger.version}</version>
  365. </dependency>
  366. <!-- swagger-ui -->
  367. <dependency>
  368. <groupId>io.springfox</groupId>
  369. <artifactId>springfox-swagger-ui</artifactId>
  370. <version>${swagger.version}</version>
  371. </dependency>
  372. <dependency>
  373. <groupId>net.sourceforge.nekohtml</groupId>
  374. <artifactId>nekohtml</artifactId>
  375. <version>1.9.22</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>com.aliyun</groupId>
  379. <artifactId>aliyun-java-sdk-core</artifactId>
  380. <version>4.0.3</version>
  381. </dependency>
  382. <!--flowable工作流依赖
  383. <dependency>
  384. <groupId>org.flowable</groupId>
  385. <artifactId>flowable-spring-boot-starter</artifactId>
  386. <version>6.4.1</version>
  387. </dependency>
  388. -->
  389. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  390. <dependency>
  391. <groupId>org.jsoup</groupId>
  392. <artifactId>jsoup</artifactId>
  393. <version>1.11.3</version>
  394. </dependency>
  395. <!-- 引入poi,解析workbook视图 -->
  396. <dependency>
  397. <groupId>org.apache.poi</groupId>
  398. <artifactId>poi-ooxml</artifactId>
  399. <version>3.17</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>org.apache.poi</groupId>
  403. <artifactId>poi-ooxml-schemas</artifactId>
  404. <version>3.17</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>org.apache.poi</groupId>
  408. <artifactId>poi</artifactId>
  409. <version>3.17</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.activiti</groupId>
  413. <artifactId>activiti-spring</artifactId>
  414. <version>6.0.0</version>
  415. </dependency>
  416. <!--<dependency>
  417. <groupId>org.activiti</groupId>
  418. <artifactId>activiti-modeler</artifactId>
  419. <version>5.22.0</version>
  420. <exclusions>
  421. <exclusion>
  422. <groupId>org.activiti</groupId>
  423. <artifactId>activiti-bpmn-model</artifactId>
  424. </exclusion>
  425. </exclusions>
  426. </dependency>-->
  427. </dependencies>
  428. </dependencyManagement>
  429. <dependencies>
  430. <dependency>
  431. <groupId>junit</groupId>
  432. <artifactId>junit</artifactId>
  433. <version>3.8.1</version>
  434. <scope>test</scope>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.springframework.boot</groupId>
  438. <artifactId>spring-boot-starter-web</artifactId>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.springframework.boot</groupId>
  442. <artifactId>spring-boot-starter-test</artifactId>
  443. <scope>test</scope>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.springframework.boot</groupId>
  447. <artifactId>spring-boot-starter-actuator</artifactId>
  448. </dependency>
  449. <dependency>
  450. <groupId>org.springframework.boot</groupId>
  451. <artifactId>spring-boot-configuration-processor</artifactId>
  452. <optional>true</optional>
  453. </dependency>
  454. </dependencies>
  455. <build>
  456. <plugins>
  457. <plugin>
  458. <groupId>org.apache.maven.plugins</groupId>
  459. <artifactId>maven-javadoc-plugin</artifactId>
  460. <version>2.10.4</version>
  461. </plugin>
  462. <plugin>
  463. <groupId>org.apache.maven.plugins</groupId>
  464. <artifactId>maven-surefire-plugin</artifactId>
  465. <configuration>
  466. <skipTests>true</skipTests>
  467. </configuration>
  468. </plugin>
  469. </plugins>
  470. </build>
  471. </project>