pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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-common</module>
  14. <module>UserService</module>
  15. <module>LogService</module>
  16. <module>FeeService</module>
  17. <module>eureka</module>
  18. <module>java110-feign</module>
  19. <module>java110-core</module>
  20. <module>java110-service</module>
  21. <module>CodeService</module>
  22. <module>StoreService</module>
  23. <module>RuleService</module>
  24. <module>java110-event</module>
  25. <module>OrderService</module>
  26. <module>java110-cacheAgent</module>
  27. <module>WebService</module>
  28. <module>java110-logAgent</module>
  29. <module>zipkin</module>
  30. <module>ShopService</module>
  31. <module>CommentService</module>
  32. <module>Api</module>
  33. <module>CommunityService</module>
  34. </modules>
  35. <parent>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-parent</artifactId>
  38. <version>1.4.0.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>1.3.2.RELEASE</spring-boot>
  45. <shiro.version>1.2.4</shiro.version>
  46. <mybatis.version>3.3.0</mybatis.version>
  47. <microcommunity.version>1.0-SNAPSHOT</microcommunity.version>
  48. <dubbo.version>2.5.4-SNAPSHOT</dubbo.version>
  49. <logback.vaersion>1.1.3</logback.vaersion>
  50. <apache.common.lang3.version>3.4</apache.common.lang3.version>
  51. <mybatis.version>3.4.1</mybatis.version>
  52. <log4j.version>1.2.17</log4j.version>
  53. <tomcat.servlet.version>6.0.37</tomcat.servlet.version>
  54. <druid.version>1.0.18</druid.version>
  55. <mybatis-spring.version>1.3.1</mybatis-spring.version>
  56. <mysql.version>5.1.39</mysql.version>
  57. <commons-pool2.version>2.2</commons-pool2.version>
  58. <commons-collections.version>3.2.1</commons-collections.version>
  59. <commons-fileupload.version>1.3.3</commons-fileupload.version>
  60. <commons-codec.version>1.6</commons-codec.version>
  61. <commons-logging.version>1.1.1</commons-logging.version>
  62. <commons-lang.version>2.5</commons-lang.version>
  63. <commons-beanutils.version>1.8.0</commons-beanutils.version>
  64. <slf4j.version>1.7.7</slf4j.version>
  65. <logback.version>1.1.2</logback.version>
  66. <activemq.version>5.7.0</activemq.version>
  67. <xbean.version>3.18</xbean.version>
  68. <axis.version>1.4</axis.version>
  69. <httpclient.verion>3.1</httpclient.verion>
  70. <spring.version>4.3.2.RELEASE</spring.version>
  71. <zookeeper.version>3.3.6</zookeeper.version>
  72. <swagger.version>2.5.0</swagger.version>
  73. </properties>
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-dependencies</artifactId>
  79. <version>Brixton.SR5</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-context-support</artifactId>
  86. <version>4.2.7.RELEASE</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.kafka</groupId>
  90. <artifactId>spring-kafka</artifactId>
  91. <version>1.1.1.RELEASE</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>fastjson</artifactId>
  96. <version>1.2.28</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.mybatis.spring.boot</groupId>
  100. <artifactId>mybatis-spring-boot-starter</artifactId>
  101. <version>1.1.1</version>
  102. </dependency>
  103. <!--mapper-->
  104. <dependency>
  105. <groupId>tk.mybatis</groupId>
  106. <artifactId>mapper-spring-boot-starter</artifactId>
  107. <version>1.1.0</version>
  108. </dependency>
  109. <!--pagehelper-->
  110. <dependency>
  111. <groupId>com.github.pagehelper</groupId>
  112. <artifactId>pagehelper-spring-boot-starter</artifactId>
  113. <version>1.1.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.auth0</groupId>
  117. <artifactId>java-jwt</artifactId>
  118. <version>3.3.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.java110</groupId>
  122. <artifactId>java110-common</artifactId>
  123. <version>${microcommunity.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.java110</groupId>
  127. <artifactId>java110-bean</artifactId>
  128. <version>${microcommunity.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.java110</groupId>
  132. <artifactId>java110-event</artifactId>
  133. <version>${microcommunity.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.java110</groupId>
  137. <artifactId>java110-core</artifactId>
  138. <version>${microcommunity.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.java110</groupId>
  142. <artifactId>java110-feign</artifactId>
  143. <version>${microcommunity.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.java110</groupId>
  147. <artifactId>java110-service</artifactId>
  148. <version>${microcommunity.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.java110</groupId>
  152. <artifactId>java110-config</artifactId>
  153. <version>${microcommunity.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.java110</groupId>
  157. <artifactId>java110-cacheAgent</artifactId>
  158. <version>${microcommunity.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.java110</groupId>
  162. <artifactId>java110-logAgent</artifactId>
  163. <version>${microcommunity.version}</version>
  164. </dependency>
  165. <!-- logback 日志组件支持 -->
  166. <dependency>
  167. <groupId>org.slf4j</groupId>
  168. <artifactId>slf4j-api</artifactId>
  169. <version>1.7.7</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>ch.qos.logback</groupId>
  173. <artifactId>logback-core</artifactId>
  174. <version>${logback.vaersion}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>ch.qos.logback</groupId>
  178. <artifactId>logback-access</artifactId>
  179. <version>${logback.vaersion}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>ch.qos.logback</groupId>
  183. <artifactId>logback-classic</artifactId>
  184. <version>${logback.vaersion}</version>
  185. </dependency>
  186. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  187. <dependency>
  188. <groupId>com.mchange</groupId>
  189. <artifactId>c3p0</artifactId>
  190. <version>0.9.5.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.activemq</groupId>
  194. <artifactId>activemq-core</artifactId>
  195. <version>${activemq.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.activemq</groupId>
  199. <artifactId>activemq-pool</artifactId>
  200. <version>${activemq.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.springframework</groupId>
  204. <artifactId>spring-jms</artifactId>
  205. <version>${spring.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.xbean</groupId>
  209. <artifactId>xbean-spring</artifactId>
  210. <version>${xbean.version}</version>
  211. </dependency>
  212. <!-- apache commons 包 主要使用一些工具类 -->
  213. <dependency>
  214. <groupId>org.apache.commons</groupId>
  215. <artifactId>commons-lang3</artifactId>
  216. <version>${apache.common.lang3.version}</version>
  217. </dependency>
  218. <!-- mybatis 依赖包 -->
  219. <dependency>
  220. <groupId>org.mybatis</groupId>
  221. <artifactId>mybatis</artifactId>
  222. <version>${mybatis.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.mybatis</groupId>
  226. <artifactId>mybatis-spring</artifactId>
  227. <version>${mybatis-spring.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>mysql</groupId>
  231. <artifactId>mysql-connector-java</artifactId>
  232. <version>${mysql.version}</version>
  233. </dependency>
  234. <!-- 阿里 数据源相关jar -->
  235. <dependency>
  236. <groupId>com.alibaba</groupId>
  237. <artifactId>druid</artifactId>
  238. <version>${druid.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>commons-validator</groupId>
  242. <artifactId>commons-validator</artifactId>
  243. <version>1.3.1</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.commons</groupId>
  247. <artifactId>commons-pool2</artifactId>
  248. <version>${commons-pool2.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>commons-fileupload</groupId>
  252. <artifactId>commons-fileupload</artifactId>
  253. <version>${commons-fileupload.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>commons-codec</groupId>
  257. <artifactId>commons-codec</artifactId>
  258. <version>${commons-codec.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>commons-net</groupId>
  262. <artifactId>commons-net</artifactId>
  263. <version>3.3</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>commons-httpclient</groupId>
  267. <artifactId>commons-httpclient</artifactId>
  268. <version>${httpclient.verion}</version>
  269. </dependency>
  270. <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2
  271. <dependency>
  272. <groupId>org.apache.axis</groupId>
  273. <artifactId>axis</artifactId>
  274. <version>${axis.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.apache.axis</groupId>
  278. <artifactId>axis-jaxrpc</artifactId>
  279. <version>${axis.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>org.apache.axis</groupId>
  283. <artifactId>axis-saaj</artifactId>
  284. <version>${axis.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>wsdl4j</groupId>
  288. <artifactId>wsdl4j</artifactId>
  289. <version>${axis.version}</version>
  290. </dependency>
  291. -->
  292. <dependency>
  293. <groupId>net.sf.ehcache</groupId>
  294. <artifactId>ehcache</artifactId>
  295. <version>2.10.2</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>redis.clients</groupId>
  299. <artifactId>jedis</artifactId>
  300. <version>2.8.2</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.quartz-scheduler</groupId>
  304. <artifactId>quartz</artifactId>
  305. <version>2.3.0</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>org.springframework.session</groupId>
  309. <artifactId>spring-session-data-redis</artifactId>
  310. <version>1.0.1.RELEASE</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>org.beanshell</groupId>
  314. <artifactId>bsh-core</artifactId>
  315. <version>2.0b4</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.apache.zookeeper</groupId>
  319. <artifactId>zookeeper</artifactId>
  320. <version>${zookeeper.version}</version>
  321. </dependency>
  322. <dependency>
  323. <groupId>io.springfox</groupId>
  324. <artifactId>springfox-swagger2</artifactId>
  325. <version>${swagger.version}</version>
  326. </dependency>
  327. <!-- swagger-ui -->
  328. <dependency>
  329. <groupId>io.springfox</groupId>
  330. <artifactId>springfox-swagger-ui</artifactId>
  331. <version>${swagger.version}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>net.sourceforge.nekohtml</groupId>
  335. <artifactId>nekohtml</artifactId>
  336. <version>1.9.22</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>com.aliyun</groupId>
  340. <artifactId>aliyun-java-sdk-core</artifactId>
  341. <version>4.0.3</version>
  342. </dependency>
  343. </dependencies>
  344. </dependencyManagement>
  345. <dependencies>
  346. <dependency>
  347. <groupId>junit</groupId>
  348. <artifactId>junit</artifactId>
  349. <version>3.8.1</version>
  350. <scope>test</scope>
  351. </dependency>
  352. <dependency>
  353. <groupId>org.springframework.boot</groupId>
  354. <artifactId>spring-boot-starter-web</artifactId>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.springframework.boot</groupId>
  358. <artifactId>spring-boot-starter-test</artifactId>
  359. <scope>test</scope>
  360. </dependency>
  361. <dependency>
  362. <groupId>org.springframework.boot</groupId>
  363. <artifactId>spring-boot-starter-actuator</artifactId>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.springframework.boot</groupId>
  367. <artifactId>spring-boot-configuration-processor</artifactId>
  368. <optional>true</optional>
  369. </dependency>
  370. </dependencies>
  371. <build>
  372. <plugins>
  373. <plugin>
  374. <groupId>org.apache.maven.plugins</groupId>
  375. <artifactId>maven-javadoc-plugin</artifactId>
  376. <version>2.10.4</version>
  377. </plugin>
  378. </plugins>
  379. </build>
  380. </project>