pom.xml 11 KB

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