pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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>OrderService</module>
  16. <module>PayService</module>
  17. <module>eureka</module>
  18. <module>WechatService</module>
  19. <module>java110-feign</module>
  20. <module>java110-core</module>
  21. <module>java110-service</module>
  22. <module>CommonService</module>
  23. <module>MerchantService</module>
  24. <module>RuleService</module>
  25. <module>SimpleListenerService</module>
  26. <module>java110-event</module>
  27. <module>CenterService</module>
  28. </modules>
  29. <parent>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-parent</artifactId>
  32. <version>1.4.0.RELEASE</version>
  33. <relativePath/> <!-- lookup parent from repository -->
  34. </parent>
  35. <properties>
  36. <maven.compile.target>1.8</maven.compile.target>
  37. <sourceEncoding>UTF-8</sourceEncoding>
  38. <spring-boot>1.3.2.RELEASE</spring-boot>
  39. <shiro.version>1.2.4</shiro.version>
  40. <mybatis.version>3.3.0</mybatis.version>
  41. <microcommunity.version>1.0-SNAPSHOT</microcommunity.version>
  42. <dubbo.version>2.5.4-SNAPSHOT</dubbo.version>
  43. <logback.vaersion>1.1.3</logback.vaersion>
  44. <apache.common.lang3.version>3.4</apache.common.lang3.version>
  45. <mybatis.version>3.4.1</mybatis.version>
  46. <log4j.version>1.2.17</log4j.version>
  47. <tomcat.servlet.version>6.0.37</tomcat.servlet.version>
  48. <druid.version>1.0.18</druid.version>
  49. <mybatis-spring.version>1.3.1</mybatis-spring.version>
  50. <mysql.version>5.1.39</mysql.version>
  51. <commons-pool2.version>2.2</commons-pool2.version>
  52. <commons-collections.version>3.2.1</commons-collections.version>
  53. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  54. <commons-codec.version>1.6</commons-codec.version>
  55. <commons-logging.version>1.1.1</commons-logging.version>
  56. <commons-lang.version>2.5</commons-lang.version>
  57. <commons-beanutils.version>1.8.0</commons-beanutils.version>
  58. <slf4j.version>1.7.7</slf4j.version>
  59. <logback.version>1.1.2</logback.version>
  60. <activemq.version>5.7.0</activemq.version>
  61. <xbean.version>3.18</xbean.version>
  62. <axis.version>1.4</axis.version>
  63. <httpclient.verion>3.1</httpclient.verion>
  64. <spring.version>4.3.2.RELEASE</spring.version>
  65. </properties>
  66. <dependencyManagement>
  67. <dependencies>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-dependencies</artifactId>
  71. <version>Brixton.SR5</version>
  72. <type>pom</type>
  73. <scope>import</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-context-support</artifactId>
  78. <version>4.2.7.RELEASE</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>1.2.28</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mybatis.spring.boot</groupId>
  87. <artifactId>mybatis-spring-boot-starter</artifactId>
  88. <version>1.1.1</version>
  89. </dependency>
  90. <!--mapper-->
  91. <dependency>
  92. <groupId>tk.mybatis</groupId>
  93. <artifactId>mapper-spring-boot-starter</artifactId>
  94. <version>1.1.0</version>
  95. </dependency>
  96. <!--pagehelper-->
  97. <dependency>
  98. <groupId>com.github.pagehelper</groupId>
  99. <artifactId>pagehelper-spring-boot-starter</artifactId>
  100. <version>1.1.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.java110</groupId>
  104. <artifactId>java110-common</artifactId>
  105. <version>${microcommunity.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.java110</groupId>
  109. <artifactId>java110-bean</artifactId>
  110. <version>${microcommunity.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.java110</groupId>
  114. <artifactId>java110-event</artifactId>
  115. <version>${microcommunity.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.java110</groupId>
  119. <artifactId>java110-core</artifactId>
  120. <version>${microcommunity.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.java110</groupId>
  124. <artifactId>java110-feign</artifactId>
  125. <version>${microcommunity.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.java110</groupId>
  129. <artifactId>java110-service</artifactId>
  130. <version>${microcommunity.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.java110</groupId>
  134. <artifactId>java110-config</artifactId>
  135. <version>${microcommunity.version}</version>
  136. </dependency>
  137. <!-- logback 日志组件支持 -->
  138. <dependency>
  139. <groupId>org.slf4j</groupId>
  140. <artifactId>slf4j-api</artifactId>
  141. <version>1.7.7</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>ch.qos.logback</groupId>
  145. <artifactId>logback-core</artifactId>
  146. <version>${logback.vaersion}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>ch.qos.logback</groupId>
  150. <artifactId>logback-access</artifactId>
  151. <version>${logback.vaersion}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>ch.qos.logback</groupId>
  155. <artifactId>logback-classic</artifactId>
  156. <version>${logback.vaersion}</version>
  157. </dependency>
  158. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  159. <dependency>
  160. <groupId>com.mchange</groupId>
  161. <artifactId>c3p0</artifactId>
  162. <version>0.9.5.2</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.activemq</groupId>
  166. <artifactId>activemq-core</artifactId>
  167. <version>${activemq.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.activemq</groupId>
  171. <artifactId>activemq-pool</artifactId>
  172. <version>${activemq.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.springframework</groupId>
  176. <artifactId>spring-jms</artifactId>
  177. <version>${spring.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.xbean</groupId>
  181. <artifactId>xbean-spring</artifactId>
  182. <version>${xbean.version}</version>
  183. </dependency>
  184. <!-- apache commons 包 主要使用一些工具类 -->
  185. <dependency>
  186. <groupId>org.apache.commons</groupId>
  187. <artifactId>commons-lang3</artifactId>
  188. <version>${apache.common.lang3.version}</version>
  189. </dependency>
  190. <!-- mybatis 依赖包 -->
  191. <dependency>
  192. <groupId>org.mybatis</groupId>
  193. <artifactId>mybatis</artifactId>
  194. <version>${mybatis.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.mybatis</groupId>
  198. <artifactId>mybatis-spring</artifactId>
  199. <version>${mybatis-spring.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>mysql</groupId>
  203. <artifactId>mysql-connector-java</artifactId>
  204. <version>${mysql.version}</version>
  205. </dependency>
  206. <!-- 阿里 数据源相关jar -->
  207. <dependency>
  208. <groupId>com.alibaba</groupId>
  209. <artifactId>druid</artifactId>
  210. <version>${druid.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>commons-validator</groupId>
  214. <artifactId>commons-validator</artifactId>
  215. <version>1.3.1</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.commons</groupId>
  219. <artifactId>commons-pool2</artifactId>
  220. <version>${commons-pool2.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>commons-fileupload</groupId>
  224. <artifactId>commons-fileupload</artifactId>
  225. <version>${commons-fileupload.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>commons-codec</groupId>
  229. <artifactId>commons-codec</artifactId>
  230. <version>${commons-codec.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>commons-net</groupId>
  234. <artifactId>commons-net</artifactId>
  235. <version>3.3</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>commons-httpclient</groupId>
  239. <artifactId>commons-httpclient</artifactId>
  240. <version>${httpclient.verion}</version>
  241. </dependency>
  242. <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2 -->
  243. <dependency>
  244. <groupId>org.apache.axis</groupId>
  245. <artifactId>axis</artifactId>
  246. <version>${axis.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.apache.axis</groupId>
  250. <artifactId>axis-jaxrpc</artifactId>
  251. <version>${axis.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.apache.axis</groupId>
  255. <artifactId>axis-saaj</artifactId>
  256. <version>${axis.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>wsdl4j</groupId>
  260. <artifactId>wsdl4j</artifactId>
  261. <version>${axis.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>net.sf.ehcache</groupId>
  265. <artifactId>ehcache</artifactId>
  266. <version>2.10.2</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>redis.clients</groupId>
  270. <artifactId>jedis</artifactId>
  271. <version>2.8.2</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.quartz-scheduler</groupId>
  275. <artifactId>quartz</artifactId>
  276. <version>2.3.0</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.springframework.session</groupId>
  280. <artifactId>spring-session-data-redis</artifactId>
  281. <version>1.0.1.RELEASE</version>
  282. </dependency>
  283. </dependencies>
  284. </dependencyManagement>
  285. <dependencies>
  286. <dependency>
  287. <groupId>junit</groupId>
  288. <artifactId>junit</artifactId>
  289. <version>3.8.1</version>
  290. <scope>test</scope>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.springframework.boot</groupId>
  294. <artifactId>spring-boot-starter-web</artifactId>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.springframework.boot</groupId>
  298. <artifactId>spring-boot-starter-test</artifactId>
  299. <scope>test</scope>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.springframework.boot</groupId>
  303. <artifactId>spring-boot-starter-actuator</artifactId>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.springframework.boot</groupId>
  307. <artifactId>spring-boot-configuration-processor</artifactId>
  308. <optional>true</optional>
  309. </dependency>
  310. </dependencies>
  311. <!--
  312. <build>
  313. <plugins>
  314. <plugin>
  315. <groupId>org.springframework.boot</groupId>
  316. <artifactId>spring-boot-maven-plugin</artifactId>
  317. </plugin>
  318. </plugins>
  319. </build>
  320. -->
  321. </project>