pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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.huike</groupId>
  7. <artifactId>huike-parent</artifactId>
  8. <version>3.4.0</version>
  9. <name>huike</name>
  10. <url>http://www.huike.vip</url>
  11. <description>会客crm管理系统</description>
  12. <properties>
  13. <huike.version>3.4.0</huike.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.4</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>2.9.2</swagger.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  23. <fastjson.version>1.2.75</fastjson.version>
  24. <oshi.version>5.6.0</oshi.version>
  25. <jna.version>5.7.0</jna.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <commons.collections.version>3.2.2</commons.collections.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>1.7</velocity.version>
  31. <jwt.version>0.9.1</jwt.version>
  32. <org.projectlombok.version>1.18.8</org.projectlombok.version>
  33. <miniio.version>8.3.3</miniio.version>
  34. <esay_excel.version>2.2.6</esay_excel.version>
  35. <xxl_job.version>2.1.0</xxl_job.version>
  36. <okHttp.version>4.9.0</okHttp.version>
  37. </properties>
  38. <!-- 依赖声明 -->
  39. <dependencyManagement>
  40. <dependencies>
  41. <!-- SpringBoot的依赖配置-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>2.2.13.RELEASE</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!--阿里数据库连接池 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>${druid.version}</version>
  54. </dependency>
  55. <!-- 解析客户端操作系统、浏览器等 -->
  56. <dependency>
  57. <groupId>eu.bitwalker</groupId>
  58. <artifactId>UserAgentUtils</artifactId>
  59. <version>${bitwalker.version}</version>
  60. </dependency>
  61. <!-- pagehelper 分页插件 -->
  62. <dependency>
  63. <groupId>com.github.pagehelper</groupId>
  64. <artifactId>pagehelper-spring-boot-starter</artifactId>
  65. <version>${pagehelper.boot.version}</version>
  66. </dependency>
  67. <!-- 获取系统信息 -->
  68. <dependency>
  69. <groupId>com.github.oshi</groupId>
  70. <artifactId>oshi-core</artifactId>
  71. <version>${oshi.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.java.dev.jna</groupId>
  75. <artifactId>jna</artifactId>
  76. <version>${jna.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.java.dev.jna</groupId>
  80. <artifactId>jna-platform</artifactId>
  81. <version>${jna.version}</version>
  82. </dependency>
  83. <!--io常用工具类 -->
  84. <dependency>
  85. <groupId>commons-io</groupId>
  86. <artifactId>commons-io</artifactId>
  87. <version>${commons.io.version}</version>
  88. </dependency>
  89. <!--文件上传工具类 -->
  90. <dependency>
  91. <groupId>commons-fileupload</groupId>
  92. <artifactId>commons-fileupload</artifactId>
  93. <version>${commons.fileupload.version}</version>
  94. </dependency>
  95. <!-- excel工具 -->
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>poi-ooxml</artifactId>
  99. <version>${poi.version}</version>
  100. </dependency>
  101. <!--velocity代码生成使用模板 -->
  102. <dependency>
  103. <groupId>org.apache.velocity</groupId>
  104. <artifactId>velocity</artifactId>
  105. <version>${velocity.version}</version>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>commons-collections</groupId>
  109. <artifactId>commons-collections</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <!-- collections工具类 -->
  114. <dependency>
  115. <groupId>commons-collections</groupId>
  116. <artifactId>commons-collections</artifactId>
  117. <version>${commons.collections.version}</version>
  118. </dependency>
  119. <!-- 阿里JSON解析器 -->
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>${fastjson.version}</version>
  124. </dependency>
  125. <!--Token生成与解析-->
  126. <dependency>
  127. <groupId>io.jsonwebtoken</groupId>
  128. <artifactId>jjwt</artifactId>
  129. <version>${jwt.version}</version>
  130. </dependency>
  131. <!--验证码 -->
  132. <dependency>
  133. <groupId>com.github.penggle</groupId>
  134. <artifactId>kaptcha</artifactId>
  135. <version>${kaptcha.version}</version>
  136. </dependency>
  137. <!-- 核心模块-->
  138. <dependency>
  139. <groupId>com.huike</groupId>
  140. <artifactId>huike-framework</artifactId>
  141. <version>${huike.version}</version>
  142. </dependency>
  143. <!-- 系统模块-->
  144. <dependency>
  145. <groupId>com.huike</groupId>
  146. <artifactId>huike-system</artifactId>
  147. <version>${huike.version}</version>
  148. </dependency>
  149. <!-- 通用工具-->
  150. <dependency>
  151. <groupId>com.huike</groupId>
  152. <artifactId>huike-common</artifactId>
  153. <version>${huike.version}</version>
  154. </dependency>
  155. <!-- 核心模块-->
  156. <dependency>
  157. <groupId>com.huike</groupId>
  158. <artifactId>huike-clues</artifactId>
  159. <version>${huike.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.huike</groupId>
  163. <artifactId>huike-business</artifactId>
  164. <version>${huike.version}</version>
  165. </dependency>
  166. <!--规则-->
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-test</artifactId>
  170. <version>2.2.13.RELEASE</version>
  171. <scope>test</scope>
  172. </dependency>
  173. <!-- lombok 管理 -->
  174. <dependency>
  175. <groupId>org.projectlombok</groupId>
  176. <artifactId>lombok</artifactId>
  177. <version>${org.projectlombok.version}</version>
  178. </dependency>
  179. <!-- easy Excel -->
  180. <dependency>
  181. <groupId>com.alibaba</groupId>
  182. <artifactId>easyexcel</artifactId>
  183. <version>${esay_excel.version}</version>
  184. </dependency>
  185. <!--minio -->
  186. <dependency>
  187. <groupId>io.minio</groupId>
  188. <artifactId>minio</artifactId>
  189. <version>${miniio.version}</version>
  190. </dependency>
  191. <!-- okHttp -->
  192. <dependency>
  193. <groupId>com.squareup.okhttp3</groupId>
  194. <artifactId>okhttp</artifactId>
  195. <version>${okHttp.version}</version>
  196. </dependency>
  197. </dependencies>
  198. </dependencyManagement>
  199. <modules>
  200. <module>huike-admin</module>
  201. <module>huike-framework</module>
  202. <module>huike-system</module>
  203. <module>huike-common</module>
  204. <module>huike-clues</module>
  205. <module>huike-business</module>
  206. <module>huike-mybatis-review</module>
  207. <module>huike-contract</module>
  208. <module>huike-report</module>
  209. <module>huike-task</module>
  210. </modules>
  211. <packaging>pom</packaging>
  212. <build>
  213. <extensions>
  214. <extension>
  215. <groupId>org.apache.maven.wagon</groupId>
  216. <artifactId>wagon-ssh</artifactId>
  217. <version>2.8</version>
  218. </extension>
  219. </extensions>
  220. <plugins>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-compiler-plugin</artifactId>
  224. <version>3.1</version>
  225. <configuration>
  226. <source>${java.version}</source>
  227. <target>${java.version}</target>
  228. <encoding>${project.build.sourceEncoding}</encoding>
  229. </configuration>
  230. </plugin>
  231. <plugin>
  232. <groupId>org.codehaus.mojo</groupId>
  233. <artifactId>wagon-maven-plugin</artifactId>
  234. <version>1.0</version>
  235. <dependencies>
  236. <dependency>
  237. <groupId>com.jcraft</groupId>
  238. <artifactId>jsch</artifactId>
  239. <version>0.1.54</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.bouncycastle</groupId>
  243. <artifactId>bcprov-jdk16</artifactId>
  244. <version>1.46</version>
  245. </dependency>
  246. </dependencies>
  247. <configuration>
  248. <serverId>huike</serverId>
  249. <fromFile>F:/crm/huike-parent/huike-admin/target/huike-admin.jar</fromFile>
  250. <url>scp://172.17.2.65/root/soft/</url>
  251. <commands>
  252. <command>sh /root/soft/jk.sh</command>
  253. </commands>
  254. <!-- 显示运行命令的输出结果 -->
  255. <displayCommandOutputs>true</displayCommandOutputs>
  256. </configuration>
  257. </plugin>
  258. </plugins>
  259. </build>
  260. <repositories>
  261. <repository>
  262. <id>public</id>
  263. <name>aliyun nexus</name>
  264. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  265. <releases>
  266. <enabled>true</enabled>
  267. </releases>
  268. </repository>
  269. <repository>
  270. <id>alfresco</id>
  271. <name>Activiti Releases</name>
  272. <url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
  273. <releases>
  274. <enabled>true</enabled>
  275. </releases>
  276. </repository>
  277. </repositories>
  278. <pluginRepositories>
  279. <pluginRepository>
  280. <id>public</id>
  281. <name>aliyun nexus</name>
  282. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  283. <releases>
  284. <enabled>true</enabled>
  285. </releases>
  286. <snapshots>
  287. <enabled>false</enabled>
  288. </snapshots>
  289. </pluginRepository>
  290. </pluginRepositories>
  291. </project>