pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.linlinjava</groupId>
  5. <artifactId>jz-crm</artifactId>
  6. <version>0.1.0</version>
  7. <packaging>pom</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.1.5.RELEASE</version>
  12. <relativePath/>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.test.skip>true</maven.test.skip>
  18. </properties>
  19. <modules>
  20. <module>jz-crm-core</module>
  21. <module>jz-crm-db</module>
  22. <module>jz-crm-admin-api</module>
  23. <module>jz-crm-all</module>
  24. <module>jz-crm-hm-api</module>
  25. <module>jz-crm-service</module>
  26. </modules>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.linlinjava</groupId>
  31. <artifactId>jz-crm-core</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.linlinjava</groupId>
  36. <artifactId>jz-crm-db</artifactId>
  37. <version>${project.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.linlinjava</groupId>
  41. <artifactId>jz-crm-admin-api</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.linlinjava</groupId>
  46. <artifactId>jz-crm-all</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.linlinjava</groupId>
  51. <artifactId>jz-crm-service</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <!-- Spring Boot Mybatis 依赖 -->
  55. <dependency>
  56. <groupId>org.mybatis.spring.boot</groupId>
  57. <artifactId>mybatis-spring-boot-starter</artifactId>
  58. <version>1.3.2</version>
  59. </dependency>
  60. <!-- Spring Boot pagehelper 依赖 -->
  61. <dependency>
  62. <groupId>com.github.pagehelper</groupId>
  63. <artifactId>pagehelper-spring-boot-starter</artifactId>
  64. <version>1.2.5</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.shiro</groupId>
  68. <artifactId>shiro-spring-boot-web-starter</artifactId>
  69. <version>1.4.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.hibernate.validator</groupId>
  73. <artifactId>hibernate-validator</artifactId>
  74. <version>6.1.0.Final</version>
  75. </dependency>
  76. <!-- MySQL 连接驱动依赖 -->
  77. <dependency>
  78. <groupId>mysql</groupId>
  79. <artifactId>mysql-connector-java</artifactId>
  80. <version>8.0.11</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>druid-spring-boot-starter</artifactId>
  85. <version>1.1.10</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.binarywang</groupId>
  89. <artifactId>weixin-java-pay</artifactId>
  90. <version>3.3.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.binarywang</groupId>
  94. <artifactId>weixin-java-miniapp</artifactId>
  95. <version>3.3.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.qcloudsms</groupId>
  99. <artifactId>qcloudsms</artifactId>
  100. <version>1.0.5</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.qcloud</groupId>
  104. <artifactId>cos_api</artifactId>
  105. <version>5.6.8</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.aliyun.oss</groupId>
  109. <artifactId>aliyun-sdk-oss</artifactId>
  110. <version>2.5.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.qiniu</groupId>
  114. <artifactId>qiniu-java-sdk</artifactId>
  115. <version>[7.2.0, 7.2.99]</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-json</artifactId>
  120. <version>2.0.4.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-mail</artifactId>
  125. <version>2.0.4.RELEASE</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>io.springfox</groupId>
  129. <artifactId>springfox-swagger2</artifactId>
  130. <version>2.2.2</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.springfox</groupId>
  134. <artifactId>springfox-swagger-ui</artifactId>
  135. <version>2.2.2</version>
  136. </dependency>
  137. </dependencies>
  138. </dependencyManagement>
  139. <dependencies>
  140. <!-- 热部署模块 -->
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-devtools</artifactId>
  144. <optional>true</optional>
  145. </dependency>
  146. <!-- 测试模块 -->
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-test</artifactId>
  150. <scope>test</scope>
  151. <exclusions>
  152. <exclusion>
  153. <groupId>com.vaadin.external.google</groupId>
  154. <artifactId>android-json</artifactId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.powermock</groupId>
  160. <artifactId>powermock-api-mockito</artifactId>
  161. <version>1.6.6</version>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.powermock</groupId>
  166. <artifactId>powermock-module-junit4</artifactId>
  167. <version>1.6.6</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.mockito</groupId>
  172. <artifactId>mockito-core</artifactId>
  173. <version>1.10.19</version>
  174. <scope>test</scope>
  175. </dependency>
  176. </dependencies>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-compiler-plugin</artifactId>
  182. <version>3.1</version>
  183. <configuration>
  184. <source>1.8</source>
  185. <target>1.8</target>
  186. </configuration>
  187. </plugin>
  188. </plugins>
  189. </build>
  190. </project>