pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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.1</version>
  9. <name>ruoyi</name>
  10. <description>启东市铁路沿线监测平台系统</description>
  11. <properties>
  12. <ruoyi.version>3.8.1</ruoyi.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  17. <druid.version>1.2.8</druid.version>
  18. <bitwalker.version>1.21</bitwalker.version>
  19. <swagger.version>3.0.0</swagger.version>
  20. <kaptcha.version>2.3.2</kaptcha.version>
  21. <mybatis-spring-boot.version>2.2.0</mybatis-spring-boot.version>
  22. <pagehelper.boot.version>1.4.0</pagehelper.boot.version>
  23. <fastjson.version>1.2.79</fastjson.version>
  24. <oshi.version>5.8.6</oshi.version>
  25. <jna.version>5.10.0</jna.version>
  26. <commons.io.version>2.11.0</commons.io.version>
  27. <commons.fileupload.version>1.4</commons.fileupload.version>
  28. <commons.collections.version>3.2.2</commons.collections.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>2.3</velocity.version>
  31. <jwt.version>0.9.1</jwt.version>
  32. </properties>
  33. <!-- 依赖声明 -->
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- SpringBoot的依赖配置-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>2.5.9</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <!-- 阿里数据库连接池 -->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid-spring-boot-starter</artifactId>
  48. <version>${druid.version}</version>
  49. </dependency>
  50. <!-- 解析客户端操作系统、浏览器等 -->
  51. <dependency>
  52. <groupId>eu.bitwalker</groupId>
  53. <artifactId>UserAgentUtils</artifactId>
  54. <version>${bitwalker.version}</version>
  55. </dependency>
  56. <!-- SpringBoot集成mybatis框架 -->
  57. <dependency>
  58. <groupId>org.mybatis.spring.boot</groupId>
  59. <artifactId>mybatis-spring-boot-starter</artifactId>
  60. <version>${mybatis-spring-boot.version}</version>
  61. </dependency>
  62. <!-- pagehelper 分页插件 -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. <version>${pagehelper.boot.version}</version>
  67. </dependency>
  68. <!-- 获取系统信息 -->
  69. <dependency>
  70. <groupId>com.github.oshi</groupId>
  71. <artifactId>oshi-core</artifactId>
  72. <version>${oshi.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>net.java.dev.jna</groupId>
  76. <artifactId>jna</artifactId>
  77. <version>${jna.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>net.java.dev.jna</groupId>
  81. <artifactId>jna-platform</artifactId>
  82. <version>${jna.version}</version>
  83. </dependency>
  84. <!-- Swagger3依赖 -->
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-boot-starter</artifactId>
  88. <version>${swagger.version}</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>io.swagger</groupId>
  92. <artifactId>swagger-models</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <!-- io常用工具类 -->
  97. <dependency>
  98. <groupId>commons-io</groupId>
  99. <artifactId>commons-io</artifactId>
  100. <version>${commons.io.version}</version>
  101. </dependency>
  102. <!-- 文件上传工具类 -->
  103. <dependency>
  104. <groupId>commons-fileupload</groupId>
  105. <artifactId>commons-fileupload</artifactId>
  106. <version>${commons.fileupload.version}</version>
  107. </dependency>
  108. <!-- excel工具 -->
  109. <dependency>
  110. <groupId>org.apache.poi</groupId>
  111. <artifactId>poi-ooxml</artifactId>
  112. <version>${poi.version}</version>
  113. </dependency>
  114. <!-- velocity代码生成使用模板 -->
  115. <dependency>
  116. <groupId>org.apache.velocity</groupId>
  117. <artifactId>velocity-engine-core</artifactId>
  118. <version>${velocity.version}</version>
  119. </dependency>
  120. <!-- collections工具类 -->
  121. <dependency>
  122. <groupId>commons-collections</groupId>
  123. <artifactId>commons-collections</artifactId>
  124. <version>${commons.collections.version}</version>
  125. </dependency>
  126. <!-- 阿里JSON解析器 -->
  127. <dependency>
  128. <groupId>com.alibaba</groupId>
  129. <artifactId>fastjson</artifactId>
  130. <version>${fastjson.version}</version>
  131. </dependency>
  132. <!-- Token生成与解析-->
  133. <dependency>
  134. <groupId>io.jsonwebtoken</groupId>
  135. <artifactId>jjwt</artifactId>
  136. <version>${jwt.version}</version>
  137. </dependency>
  138. <!-- 验证码 -->
  139. <dependency>
  140. <groupId>com.github.penggle</groupId>
  141. <artifactId>kaptcha</artifactId>
  142. <version>${kaptcha.version}</version>
  143. </dependency>
  144. <!-- 定时任务-->
  145. <dependency>
  146. <groupId>com.ruoyi</groupId>
  147. <artifactId>ruoyi-quartz</artifactId>
  148. <version>${ruoyi.version}</version>
  149. </dependency>
  150. <!-- 代码生成-->
  151. <dependency>
  152. <groupId>com.ruoyi</groupId>
  153. <artifactId>ruoyi-generator</artifactId>
  154. <version>${ruoyi.version}</version>
  155. </dependency>
  156. <!-- 核心模块-->
  157. <dependency>
  158. <groupId>com.ruoyi</groupId>
  159. <artifactId>ruoyi-framework</artifactId>
  160. <version>${ruoyi.version}</version>
  161. </dependency>
  162. <!-- 系统模块-->
  163. <dependency>
  164. <groupId>com.ruoyi</groupId>
  165. <artifactId>ruoyi-system</artifactId>
  166. <version>${ruoyi.version}</version>
  167. </dependency>
  168. <!-- 通用工具-->
  169. <dependency>
  170. <groupId>com.ruoyi</groupId>
  171. <artifactId>ruoyi-common</artifactId>
  172. <version>${ruoyi.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>cn.hutool</groupId>
  176. <artifactId>hutool-all</artifactId>
  177. <version>5.7.11</version>
  178. </dependency>
  179. <!-- easypoi -->
  180. <dependency>
  181. <groupId>cn.afterturn</groupId>
  182. <artifactId>easypoi-spring-boot-starter</artifactId>
  183. <version>4.3.0</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>cn.afterturn</groupId>
  187. <artifactId>easypoi-base</artifactId>
  188. <version>4.3.0</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>cn.afterturn</groupId>
  192. <artifactId>easypoi-web</artifactId>
  193. <version>4.3.0</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>cn.afterturn</groupId>
  197. <artifactId>easypoi-annotation</artifactId>
  198. <version>4.3.0</version>
  199. </dependency>
  200. </dependencies>
  201. </dependencyManagement>
  202. <modules>
  203. <module>ruoyi-admin</module>
  204. <module>ruoyi-framework</module>
  205. <module>ruoyi-system</module>
  206. <module>ruoyi-quartz</module>
  207. <module>ruoyi-generator</module>
  208. <module>ruoyi-common</module>
  209. </modules>
  210. <packaging>pom</packaging>
  211. <dependencies>
  212. </dependencies>
  213. <build>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-compiler-plugin</artifactId>
  218. <version>3.1</version>
  219. <configuration>
  220. <source>${java.version}</source>
  221. <target>${java.version}</target>
  222. <encoding>${project.build.sourceEncoding}</encoding>
  223. </configuration>
  224. </plugin>
  225. </plugins>
  226. </build>
  227. <repositories>
  228. <repository>
  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. </repository>
  236. </repositories>
  237. <pluginRepositories>
  238. <pluginRepository>
  239. <id>public</id>
  240. <name>aliyun nexus</name>
  241. <url>https://maven.aliyun.com/repository/public</url>
  242. <releases>
  243. <enabled>true</enabled>
  244. </releases>
  245. <snapshots>
  246. <enabled>false</enabled>
  247. </snapshots>
  248. </pluginRepository>
  249. <pluginRepository>
  250. <id>central</id>
  251. <url>https://repo1.maven.org/maven2</url>
  252. <releases>
  253. <enabled>true</enabled>
  254. </releases>
  255. <snapshots>
  256. <enabled>false</enabled>
  257. </snapshots>
  258. </pluginRepository>
  259. </pluginRepositories>
  260. </project>