pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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. <log4j.version>1.2.17</log4j.version>
  43. <tomcat.servlet.version>6.0.37</tomcat.servlet.version>
  44. <druid.version>1.0.18</druid.version>
  45. <mybatis-spring.version>1.3.1</mybatis-spring.version>
  46. <mysql.version>5.1.39</mysql.version>
  47. <commons-pool2.version>2.2</commons-pool2.version>
  48. <commons-collections.version>3.2.1</commons-collections.version>
  49. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  50. <commons-codec.version>1.6</commons-codec.version>
  51. <commons-logging.version>1.1.1</commons-logging.version>
  52. <commons-lang.version>2.5</commons-lang.version>
  53. <commons-beanutils.version>1.8.0</commons-beanutils.version>
  54. <slf4j.version>1.7.7</slf4j.version>
  55. <logback.version>1.1.2</logback.version>
  56. <activemq.version>5.7.0</activemq.version>
  57. <xbean.version>3.18</xbean.version>
  58. <axis.version>1.4</axis.version>
  59. <httpclient.verion>3.1</httpclient.verion>
  60. <spring.version>4.3.2.RELEASE</spring.version>
  61. </properties>
  62. <dependencyManagement>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.springframework.cloud</groupId>
  66. <artifactId>spring-cloud-dependencies</artifactId>
  67. <version>Brixton.SR5</version>
  68. <type>pom</type>
  69. <scope>import</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>1.2.28</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mybatis.spring.boot</groupId>
  78. <artifactId>mybatis-spring-boot-starter</artifactId>
  79. <version>1.1.1</version>
  80. </dependency>
  81. <!--mapper-->
  82. <dependency>
  83. <groupId>tk.mybatis</groupId>
  84. <artifactId>mapper-spring-boot-starter</artifactId>
  85. <version>1.1.0</version>
  86. </dependency>
  87. <!--pagehelper-->
  88. <dependency>
  89. <groupId>com.github.pagehelper</groupId>
  90. <artifactId>pagehelper-spring-boot-starter</artifactId>
  91. <version>1.1.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.java110</groupId>
  95. <artifactId>common</artifactId>
  96. <version>${microcommunity.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.java110</groupId>
  100. <artifactId>bean</artifactId>
  101. <version>${microcommunity.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.java110</groupId>
  105. <artifactId>core</artifactId>
  106. <version>${microcommunity.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.java110</groupId>
  110. <artifactId>feign</artifactId>
  111. <version>${microcommunity.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.java110</groupId>
  115. <artifactId>service</artifactId>
  116. <version>${microcommunity.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.java110</groupId>
  120. <artifactId>config</artifactId>
  121. <version>${microcommunity.version}</version>
  122. </dependency>
  123. <!-- logback 日志组件支持 -->
  124. <dependency>
  125. <groupId>org.slf4j</groupId>
  126. <artifactId>slf4j-api</artifactId>
  127. <version>1.7.7</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>ch.qos.logback</groupId>
  131. <artifactId>logback-core</artifactId>
  132. <version>${logback.vaersion}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>ch.qos.logback</groupId>
  136. <artifactId>logback-access</artifactId>
  137. <version>${logback.vaersion}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>ch.qos.logback</groupId>
  141. <artifactId>logback-classic</artifactId>
  142. <version>${logback.vaersion}</version>
  143. </dependency>
  144. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  145. <dependency>
  146. <groupId>com.mchange</groupId>
  147. <artifactId>c3p0</artifactId>
  148. <version>0.9.5.2</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.activemq</groupId>
  152. <artifactId>activemq-core</artifactId>
  153. <version>${activemq.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.activemq</groupId>
  157. <artifactId>activemq-pool</artifactId>
  158. <version>${activemq.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.springframework</groupId>
  162. <artifactId>spring-jms</artifactId>
  163. <version>${spring.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.xbean</groupId>
  167. <artifactId>xbean-spring</artifactId>
  168. <version>${xbean.version}</version>
  169. </dependency>
  170. <!-- apache commons 包 主要使用一些工具类 -->
  171. <dependency>
  172. <groupId>org.apache.commons</groupId>
  173. <artifactId>commons-lang3</artifactId>
  174. <version>${apache.common.lang3.version}</version>
  175. </dependency>
  176. <!-- mybatis 依赖包 -->
  177. <dependency>
  178. <groupId>org.mybatis</groupId>
  179. <artifactId>mybatis</artifactId>
  180. <version>${mybatis.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.mybatis</groupId>
  184. <artifactId>mybatis-spring</artifactId>
  185. <version>${mybatis-spring.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>mysql</groupId>
  189. <artifactId>mysql-connector-java</artifactId>
  190. <version>${mysql.version}</version>
  191. </dependency>
  192. <!-- 阿里 数据源相关jar -->
  193. <dependency>
  194. <groupId>com.alibaba</groupId>
  195. <artifactId>druid</artifactId>
  196. <version>${druid.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.commons</groupId>
  200. <artifactId>commons-pool2</artifactId>
  201. <version>${commons-pool2.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>commons-fileupload</groupId>
  205. <artifactId>commons-fileupload</artifactId>
  206. <version>${commons-fileupload.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>commons-codec</groupId>
  210. <artifactId>commons-codec</artifactId>
  211. <version>${commons-codec.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>commons-httpclient</groupId>
  215. <artifactId>commons-httpclient</artifactId>
  216. <version>${httpclient.verion}</version>
  217. </dependency>
  218. <!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2 -->
  219. <dependency>
  220. <groupId>org.apache.axis</groupId>
  221. <artifactId>axis</artifactId>
  222. <version>${axis.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.axis</groupId>
  226. <artifactId>axis-jaxrpc</artifactId>
  227. <version>${axis.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.axis</groupId>
  231. <artifactId>axis-saaj</artifactId>
  232. <version>${axis.version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>wsdl4j</groupId>
  236. <artifactId>wsdl4j</artifactId>
  237. <version>${axis.version}</version>
  238. </dependency>
  239. </dependencies>
  240. </dependencyManagement>
  241. <dependencies>
  242. <dependency>
  243. <groupId>junit</groupId>
  244. <artifactId>junit</artifactId>
  245. <version>3.8.1</version>
  246. <scope>test</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.springframework.boot</groupId>
  250. <artifactId>spring-boot-starter-web</artifactId>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.springframework.boot</groupId>
  254. <artifactId>spring-boot-starter-test</artifactId>
  255. <scope>test</scope>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.springframework.boot</groupId>
  259. <artifactId>spring-boot-starter-actuator</artifactId>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.springframework.boot</groupId>
  263. <artifactId>spring-boot-configuration-processor</artifactId>
  264. <optional>true</optional>
  265. </dependency>
  266. </dependencies>
  267. <!--
  268. <build>
  269. <plugins>
  270. <plugin>
  271. <groupId>org.springframework.boot</groupId>
  272. <artifactId>spring-boot-maven-plugin</artifactId>
  273. </plugin>
  274. </plugins>
  275. </build>
  276. -->
  277. </project>