pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.8.5</version>
  9. <properties>
  10. <hx.version>1.0.3</hx.version>
  11. <ruoyi.version>3.8.5</ruoyi.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  16. <druid.version>1.2.16</druid.version>
  17. <bitwalker.version>1.21</bitwalker.version>
  18. <swagger.version>3.0.0</swagger.version>
  19. <kaptcha.version>2.3.3</kaptcha.version>
  20. <pagehelper.boot.version>1.4.4</pagehelper.boot.version>
  21. <fastjson.version>2.0.23</fastjson.version>
  22. <oshi.version>6.4.0</oshi.version>
  23. <commons.io.version>2.11.0</commons.io.version>
  24. <commons.collections.version>3.2.2</commons.collections.version>
  25. <poi.version>4.1.2</poi.version>
  26. <velocity.version>2.3</velocity.version>
  27. <jwt.version>0.9.1</jwt.version>
  28. </properties>
  29. <parent>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-parent</artifactId>
  32. <version>2.7.6</version>
  33. </parent>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <!-- 数据库连接池 -->
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>druid-spring-boot-starter</artifactId>
  41. <version>${druid.version}</version>
  42. </dependency>
  43. <!-- 解析客户端操作系统、浏览器等 -->
  44. <dependency>
  45. <groupId>eu.bitwalker</groupId>
  46. <artifactId>UserAgentUtils</artifactId>
  47. <version>${bitwalker.version}</version>
  48. </dependency>
  49. <!-- pagehelper 分页插件 -->
  50. <dependency>
  51. <groupId>com.github.pagehelper</groupId>
  52. <artifactId>pagehelper-spring-boot-starter</artifactId>
  53. <version>${pagehelper.boot.version}</version>
  54. <!-- 排除mybatis引入,防止与mybatis-plus冲突 -->
  55. <exclusions>
  56. <exclusion>
  57. <groupId>org.mybatis</groupId>
  58. <artifactId>mybatis</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <!-- 获取系统信息 -->
  63. <dependency>
  64. <groupId>com.github.oshi</groupId>
  65. <artifactId>oshi-core</artifactId>
  66. <version>${oshi.version}</version>
  67. </dependency>
  68. <!-- Swagger3依赖 -->
  69. <dependency>
  70. <groupId>io.springfox</groupId>
  71. <artifactId>springfox-boot-starter</artifactId>
  72. <version>${swagger.version}</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>io.swagger</groupId>
  76. <artifactId>swagger-models</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <!-- io常用工具类 -->
  81. <dependency>
  82. <groupId>commons-io</groupId>
  83. <artifactId>commons-io</artifactId>
  84. <version>${commons.io.version}</version>
  85. </dependency>
  86. <!-- excel工具 -->
  87. <dependency>
  88. <groupId>org.apache.poi</groupId>
  89. <artifactId>poi-ooxml</artifactId>
  90. <version>${poi.version}</version>
  91. </dependency>
  92. <!-- velocity代码生成使用模板 -->
  93. <dependency>
  94. <groupId>org.apache.velocity</groupId>
  95. <artifactId>velocity-engine-core</artifactId>
  96. <version>${velocity.version}</version>
  97. </dependency>
  98. <!-- collections工具类 -->
  99. <dependency>
  100. <groupId>commons-collections</groupId>
  101. <artifactId>commons-collections</artifactId>
  102. <version>${commons.collections.version}</version>
  103. </dependency>
  104. <!-- 阿里JSON解析器 -->
  105. <dependency>
  106. <groupId>com.alibaba.fastjson2</groupId>
  107. <artifactId>fastjson2</artifactId>
  108. <version>${fastjson.version}</version>
  109. </dependency>
  110. <!-- Token生成与解析-->
  111. <dependency>
  112. <groupId>io.jsonwebtoken</groupId>
  113. <artifactId>jjwt</artifactId>
  114. <version>${jwt.version}</version>
  115. </dependency>
  116. <!-- 验证码 -->
  117. <dependency>
  118. <groupId>pro.fessional</groupId>
  119. <artifactId>kaptcha</artifactId>
  120. <version>${kaptcha.version}</version>
  121. </dependency>
  122. <!-- 核心模块-->
  123. <dependency>
  124. <groupId>com.ruoyi</groupId>
  125. <artifactId>ruoyi-framework</artifactId>
  126. <version>${ruoyi.version}</version>
  127. </dependency>
  128. <!-- 系统模块-->
  129. <dependency>
  130. <groupId>com.ruoyi</groupId>
  131. <artifactId>ruoyi-system</artifactId>
  132. <version>${ruoyi.version}</version>
  133. </dependency>
  134. <!-- 通用工具-->
  135. <dependency>
  136. <groupId>com.ruoyi</groupId>
  137. <artifactId>ruoyi-common</artifactId>
  138. <version>${ruoyi.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.fjhx</groupId>
  142. <artifactId>hx-socket</artifactId>
  143. <version>${hx.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.fjhx</groupId>
  147. <artifactId>hx-file</artifactId>
  148. <version>${hx.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.fjhx</groupId>
  152. <artifactId>hx-tenant</artifactId>
  153. <version>${hx.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.fjhx</groupId>
  157. <artifactId>hx-area</artifactId>
  158. <version>${hx.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.fjhx</groupId>
  162. <artifactId>hx-flow</artifactId>
  163. <version>${hx.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.fjhx</groupId>
  167. <artifactId>hx-base</artifactId>
  168. <version>${hx.version}</version>
  169. </dependency>
  170. </dependencies>
  171. </dependencyManagement>
  172. <modules>
  173. <module>ruoyi-admin</module>
  174. <module>ruoyi-framework</module>
  175. <module>ruoyi-system</module>
  176. <module>ruoyi-common</module>
  177. <module>hx-socket</module>
  178. <module>hx-base</module>
  179. <module>hx-file</module>
  180. <module>hx-flow</module>
  181. <module>hx-tenant</module>
  182. <module>hx-area</module>
  183. <module>hx-kd100</module>
  184. </modules>
  185. <packaging>pom</packaging>
  186. <build>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-compiler-plugin</artifactId>
  191. <version>3.1</version>
  192. <configuration>
  193. <source>${java.version}</source>
  194. <target>${java.version}</target>
  195. <encoding>${project.build.sourceEncoding}</encoding>
  196. </configuration>
  197. </plugin>
  198. <plugin>
  199. <groupId>org.apache.maven.plugins</groupId>
  200. <artifactId>maven-source-plugin</artifactId>
  201. <executions>
  202. <execution>
  203. <id>attach-sources</id>
  204. <goals>
  205. <goal>jar</goal>
  206. </goals>
  207. </execution>
  208. </executions>
  209. </plugin>
  210. </plugins>
  211. </build>
  212. <repositories>
  213. <repository>
  214. <id>public</id>
  215. <name>aliyun nexus</name>
  216. <url>https://maven.aliyun.com/repository/public</url>
  217. <releases>
  218. <enabled>true</enabled>
  219. </releases>
  220. </repository>
  221. </repositories>
  222. <pluginRepositories>
  223. <pluginRepository>
  224. <id>public</id>
  225. <name>aliyun nexus</name>
  226. <url>https://maven.aliyun.com/repository/public</url>
  227. <releases>
  228. <enabled>true</enabled>
  229. </releases>
  230. <snapshots>
  231. <enabled>false</enabled>
  232. </snapshots>
  233. </pluginRepository>
  234. </pluginRepositories>
  235. </project>