pom.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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.hz</groupId>
  7. <artifactId>hz</artifactId>
  8. <version>3.6.0</version>
  9. <!-- <parent>-->
  10. <!-- <groupId>org.springframework.boot</groupId>-->
  11. <!-- <artifactId>spring-boot-starter-parent</artifactId>-->
  12. <!-- <version>2.6.5</version>-->
  13. <!-- <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
  14. <!-- </parent>-->
  15. <name>hz</name>
  16. <url>http://www.hz.vip</url>
  17. <description>整车监控预警与性能分析平台</description>
  18. <properties>
  19. <hz.version>3.6.0</hz.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  24. <druid.version>1.2.6</druid.version>
  25. <bitwalker.version>1.21</bitwalker.version>
  26. <kaptcha.version>2.3.2</kaptcha.version>
  27. <pagehelper.boot.version>1.4.2</pagehelper.boot.version>
  28. <fastjson.version>1.2.83</fastjson.version>
  29. <oshi.version>5.8.0</oshi.version>
  30. <jna.version>5.8.0</jna.version>
  31. <commons.io.version>2.11.0</commons.io.version>
  32. <commons.fileupload.version>1.4</commons.fileupload.version>
  33. <commons.collections.version>3.2.2</commons.collections.version>
  34. <poi.version>4.1.2</poi.version>
  35. <velocity.version>1.7</velocity.version>
  36. <jwt.version>0.9.1</jwt.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.7.0</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. <!-- Swagger3依赖 -->
  84. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  85. <!-- <dependency>-->
  86. <!-- <groupId>io.springfox</groupId>-->
  87. <!-- <artifactId>springfox-swagger2</artifactId>-->
  88. <!-- <version>3.0.0</version>-->
  89. <!-- </dependency>-->
  90. <dependency>
  91. <groupId>io.springfox</groupId>
  92. <artifactId>springfox-boot-starter</artifactId>
  93. <version>3.0.0</version>
  94. <exclusions>
  95. <exclusion>
  96. <groupId>io.swagger</groupId>
  97. <artifactId>swagger-models</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <!-- knife4j -->
  102. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter -->
  103. <!-- <dependency>-->
  104. <!-- <groupId>com.github.xiaoymin</groupId>-->
  105. <!-- <artifactId>knife4j-spring-boot-starter</artifactId>-->
  106. <!-- <version>3.0.3</version>-->
  107. <!-- </dependency>-->
  108. <!-- io常用工具类 -->
  109. <dependency>
  110. <groupId>commons-io</groupId>
  111. <artifactId>commons-io</artifactId>
  112. <version>${commons.io.version}</version>
  113. </dependency>
  114. <!-- 文件上传工具类 -->
  115. <dependency>
  116. <groupId>commons-fileupload</groupId>
  117. <artifactId>commons-fileupload</artifactId>
  118. <version>${commons.fileupload.version}</version>
  119. </dependency>
  120. <!-- excel工具 -->
  121. <dependency>
  122. <groupId>org.apache.poi</groupId>
  123. <artifactId>poi-ooxml</artifactId>
  124. <version>${poi.version}</version>
  125. </dependency>
  126. <!-- velocity代码生成使用模板 -->
  127. <dependency>
  128. <groupId>org.apache.velocity</groupId>
  129. <artifactId>velocity</artifactId>
  130. <version>${velocity.version}</version>
  131. <exclusions>
  132. <exclusion>
  133. <groupId>commons-collections</groupId>
  134. <artifactId>commons-collections</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <!-- collections工具类 -->
  139. <dependency>
  140. <groupId>commons-collections</groupId>
  141. <artifactId>commons-collections</artifactId>
  142. <version>${commons.collections.version}</version>
  143. </dependency>
  144. <!-- 阿里JSON解析器 -->
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>fastjson</artifactId>
  148. <version>${fastjson.version}</version>
  149. </dependency>
  150. <!-- Token生成与解析-->
  151. <dependency>
  152. <groupId>io.jsonwebtoken</groupId>
  153. <artifactId>jjwt</artifactId>
  154. <version>${jwt.version}</version>
  155. </dependency>
  156. <!-- 验证码 -->
  157. <dependency>
  158. <groupId>com.github.penggle</groupId>
  159. <artifactId>kaptcha</artifactId>
  160. <version>${kaptcha.version}</version>
  161. </dependency>
  162. <!-- 定时任务-->
  163. <dependency>
  164. <groupId>com.hz</groupId>
  165. <artifactId>hz-quartz</artifactId>
  166. <version>${hz.version}</version>
  167. </dependency>
  168. <!-- 代码生成-->
  169. <dependency>
  170. <groupId>com.hz</groupId>
  171. <artifactId>hz-generator</artifactId>
  172. <version>${hz.version}</version>
  173. </dependency>
  174. <!-- 核心模块-->
  175. <dependency>
  176. <groupId>com.hz</groupId>
  177. <artifactId>hz-framework</artifactId>
  178. <version>${hz.version}</version>
  179. </dependency>
  180. <!-- 系统模块-->
  181. <dependency>
  182. <groupId>com.hz</groupId>
  183. <artifactId>hz-system</artifactId>
  184. <version>${hz.version}</version>
  185. </dependency>
  186. <!-- 通用工具-->
  187. <dependency>
  188. <groupId>com.hz</groupId>
  189. <artifactId>hz-common</artifactId>
  190. <version>${hz.version}</version>
  191. </dependency>
  192. </dependencies>
  193. </dependencyManagement>
  194. <modules>
  195. <module>hz-admin</module>
  196. <module>hz-framework</module>
  197. <module>hz-system</module>
  198. <module>hz-quartz</module>
  199. <module>hz-generator</module>
  200. <module>hz-common</module>
  201. <module>hz-business</module>
  202. </modules>
  203. <packaging>pom</packaging>
  204. <dependencies>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-compiler-plugin</artifactId>
  211. <version>3.1</version>
  212. <configuration>
  213. <source>${java.version}</source>
  214. <target>${java.version}</target>
  215. <encoding>${project.build.sourceEncoding}</encoding>
  216. </configuration>
  217. </plugin>
  218. </plugins>
  219. </build>
  220. <repositories>
  221. <repository>
  222. <id>public</id>
  223. <name>aliyun nexus</name>
  224. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  225. <releases>
  226. <enabled>true</enabled>
  227. </releases>
  228. </repository>
  229. </repositories>
  230. <pluginRepositories>
  231. <pluginRepository>
  232. <id>public</id>
  233. <name>aliyun nexus</name>
  234. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  235. <releases>
  236. <enabled>true</enabled>
  237. </releases>
  238. <snapshots>
  239. <enabled>false</enabled>
  240. </snapshots>
  241. </pluginRepository>
  242. </pluginRepositories>
  243. </project>