pom.xml 9.3 KB

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