pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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>bean</module>
  12. <module>config</module>
  13. <module>common</module>
  14. <module>UserService</module>
  15. <module>MerchantService</module>
  16. <module>OrderService</module>
  17. <module>PayService</module>
  18. <module>eureka</module>
  19. <module>Wechat</module>
  20. <module>feign</module>
  21. <module>core</module>
  22. <module>service</module>
  23. <module>BaseService</module>
  24. </modules>
  25. <parent>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-parent</artifactId>
  28. <version>1.4.0.RELEASE</version>
  29. <relativePath/> <!-- lookup parent from repository -->
  30. </parent>
  31. <properties>
  32. <maven.compile.target>1.8</maven.compile.target>
  33. <sourceEncoding>UTF-8</sourceEncoding>
  34. <spring-boot>1.3.2.RELEASE</spring-boot>
  35. <shiro.version>1.2.4</shiro.version>
  36. <mybatis.version>3.3.0</mybatis.version>
  37. <microcommunity.version>1.0-SNAPSHOT</microcommunity.version>
  38. <dubbo.version>2.5.4-SNAPSHOT</dubbo.version>
  39. <logback.vaersion>1.1.3</logback.vaersion>
  40. <apache.common.lang3.version>3.4</apache.common.lang3.version>
  41. <mybatis.version>3.4.1</mybatis.version>
  42. <linkage.version>0.0.1-SNAPSHOT</linkage.version>
  43. <dubbo.version>2.5.3</dubbo.version>
  44. <zookeeper.version>3.4.5</zookeeper.version>
  45. <zkclient.version>0.3</zkclient.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. </properties>
  65. <dependencyManagement>
  66. <dependencies>
  67. <dependency>
  68. <groupId>org.springframework.cloud</groupId>
  69. <artifactId>spring-cloud-dependencies</artifactId>
  70. <version>Brixton.SR5</version>
  71. <type>pom</type>
  72. <scope>import</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>1.1.39</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.mybatis.spring.boot</groupId>
  81. <artifactId>mybatis-spring-boot-starter</artifactId>
  82. <version>1.1.1</version>
  83. </dependency>
  84. <!--mapper-->
  85. <dependency>
  86. <groupId>tk.mybatis</groupId>
  87. <artifactId>mapper-spring-boot-starter</artifactId>
  88. <version>1.1.0</version>
  89. </dependency>
  90. <!--pagehelper-->
  91. <dependency>
  92. <groupId>com.github.pagehelper</groupId>
  93. <artifactId>pagehelper-spring-boot-starter</artifactId>
  94. <version>1.1.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.java110</groupId>
  98. <artifactId>common</artifactId>
  99. <version>${microcommunity.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.java110</groupId>
  103. <artifactId>bean</artifactId>
  104. <version>${microcommunity.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.java110</groupId>
  108. <artifactId>core</artifactId>
  109. <version>${microcommunity.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.java110</groupId>
  113. <artifactId>feign</artifactId>
  114. <version>${microcommunity.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.java110</groupId>
  118. <artifactId>service</artifactId>
  119. <version>${microcommunity.version}</version>
  120. </dependency>
  121. <!-- logback 日志组件支持 -->
  122. <dependency>
  123. <groupId>org.slf4j</groupId>
  124. <artifactId>slf4j-api</artifactId>
  125. <version>1.7.7</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>ch.qos.logback</groupId>
  129. <artifactId>logback-core</artifactId>
  130. <version>${logback.vaersion}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>ch.qos.logback</groupId>
  134. <artifactId>logback-access</artifactId>
  135. <version>${logback.vaersion}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>ch.qos.logback</groupId>
  139. <artifactId>logback-classic</artifactId>
  140. <version>${logback.vaersion}</version>
  141. </dependency>
  142. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  143. <dependency>
  144. <groupId>com.mchange</groupId>
  145. <artifactId>c3p0</artifactId>
  146. <version>0.9.5.2</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.activemq</groupId>
  150. <artifactId>activemq-core</artifactId>
  151. <version>${activemq.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.activemq</groupId>
  155. <artifactId>activemq-pool</artifactId>
  156. <version>${activemq.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.xbean</groupId>
  160. <artifactId>xbean-spring</artifactId>
  161. <version>${xbean.version}</version>
  162. </dependency>
  163. <!-- apache commons 包 主要使用一些工具类 -->
  164. <dependency>
  165. <groupId>org.apache.commons</groupId>
  166. <artifactId>commons-lang3</artifactId>
  167. <version>${apache.common.lang3.version}</version>
  168. </dependency>
  169. <!-- mybatis 依赖包 -->
  170. <dependency>
  171. <groupId>org.mybatis</groupId>
  172. <artifactId>mybatis</artifactId>
  173. <version>${mybatis.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.mybatis</groupId>
  177. <artifactId>mybatis-spring</artifactId>
  178. <version>${mybatis-spring.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>mysql</groupId>
  182. <artifactId>mysql-connector-java</artifactId>
  183. <version>${mysql.version}</version>
  184. </dependency>
  185. <!-- 阿里 数据源相关jar -->
  186. <dependency>
  187. <groupId>com.alibaba</groupId>
  188. <artifactId>druid</artifactId>
  189. <version>${druid.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.commons</groupId>
  193. <artifactId>commons-pool2</artifactId>
  194. <version>${commons-pool2.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>commons-fileupload</groupId>
  198. <artifactId>commons-fileupload</artifactId>
  199. <version>${commons-fileupload.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>commons-codec</groupId>
  203. <artifactId>commons-codec</artifactId>
  204. <version>${commons-codec.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>commons-httpclient</groupId>
  208. <artifactId>commons-httpclient</artifactId>
  209. <version>${httpclient.verion}</version>
  210. </dependency>
  211. <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2 -->
  212. <dependency>
  213. <groupId>org.apache.axis</groupId>
  214. <artifactId>axis</artifactId>
  215. <version>${axis.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.axis</groupId>
  219. <artifactId>axis-jaxrpc</artifactId>
  220. <version>${axis.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.axis</groupId>
  224. <artifactId>axis-saaj</artifactId>
  225. <version>${axis.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>wsdl4j</groupId>
  229. <artifactId>wsdl4j</artifactId>
  230. <version>${axis.version}</version>
  231. </dependency>
  232. </dependencies>
  233. </dependencyManagement>
  234. <dependencies>
  235. <dependency>
  236. <groupId>junit</groupId>
  237. <artifactId>junit</artifactId>
  238. <version>3.8.1</version>
  239. <scope>test</scope>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.springframework.boot</groupId>
  243. <artifactId>spring-boot-starter-web</artifactId>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.springframework.boot</groupId>
  247. <artifactId>spring-boot-starter-test</artifactId>
  248. <scope>test</scope>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.springframework.boot</groupId>
  252. <artifactId>spring-boot-starter-actuator</artifactId>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.springframework.boot</groupId>
  256. <artifactId>spring-boot-configuration-processor</artifactId>
  257. <optional>true</optional>
  258. </dependency>
  259. </dependencies>
  260. <!--
  261. <build>
  262. <plugins>
  263. <plugin>
  264. <groupId>org.springframework.boot</groupId>
  265. <artifactId>spring-boot-maven-plugin</artifactId>
  266. </plugin>
  267. </plugins>
  268. </build>
  269. -->
  270. </project>