java后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 月之前
2 月之前
5 天之前
2 月之前
1 周之前
2 月之前
2 月之前
5 天之前
2 天之前
2 月之前
2 月之前
5 天之前
2 月之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  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.9.0</version>
  9. <name>ruoyi</name>
  10. <description>管理系统</description>
  11. <properties>
  12. <ruoyi.version>3.9.0</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. <spring-boot.version>2.5.15</spring-boot.version>
  18. <druid.version>1.2.23</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  23. <fastjson.version>2.0.57</fastjson.version>
  24. <oshi.version>6.8.2</oshi.version>
  25. <commons.io.version>2.19.0</commons.io.version>
  26. <poi.version>4.1.2</poi.version>
  27. <velocity.version>2.3</velocity.version>
  28. <jwt.version>0.9.1</jwt.version>
  29. <!-- override dependency version -->
  30. <tomcat.version>9.0.106</tomcat.version>
  31. <logback.version>1.2.13</logback.version>
  32. <spring-security.version>5.7.12</spring-security.version>
  33. <spring-framework.version>5.3.39</spring-framework.version>
  34. <cn.hutool.all.version>5.5.4</cn.hutool.all.version>
  35. <com.itextpdf.version>5.5.13.2</com.itextpdf.version>
  36. <itext-asian.version>5.2.0</itext-asian.version>
  37. <de.odysseus.juel.version>2.1.3</de.odysseus.juel.version>
  38. <httpclient.version>4.5.13</httpclient.version>
  39. <net.coobird.version>0.4.8</net.coobird.version>
  40. <geotools.version>20.0</geotools.version>
  41. </properties>
  42. <!-- 依赖声明 -->
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- 覆盖SpringFramework的依赖配置-->
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-framework-bom</artifactId>
  49. <version>${spring-framework.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <!-- 覆盖SpringSecurity的依赖配置-->
  54. <dependency>
  55. <groupId>org.springframework.security</groupId>
  56. <artifactId>spring-security-bom</artifactId>
  57. <version>${spring-security.version}</version>
  58. <type>pom</type>
  59. <scope>import</scope>
  60. </dependency>
  61. <!-- SpringBoot的依赖配置-->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-dependencies</artifactId>
  65. <version>${spring-boot.version}</version>
  66. <type>pom</type>
  67. <scope>import</scope>
  68. </dependency>
  69. <!-- 覆盖logback的依赖配置-->
  70. <dependency>
  71. <groupId>ch.qos.logback</groupId>
  72. <artifactId>logback-core</artifactId>
  73. <version>${logback.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>ch.qos.logback</groupId>
  77. <artifactId>logback-classic</artifactId>
  78. <version>${logback.version}</version>
  79. </dependency>
  80. <!-- 覆盖tomcat的依赖配置-->
  81. <dependency>
  82. <groupId>org.apache.tomcat.embed</groupId>
  83. <artifactId>tomcat-embed-core</artifactId>
  84. <version>${tomcat.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.tomcat.embed</groupId>
  88. <artifactId>tomcat-embed-el</artifactId>
  89. <version>${tomcat.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.tomcat.embed</groupId>
  93. <artifactId>tomcat-embed-websocket</artifactId>
  94. <version>${tomcat.version}</version>
  95. </dependency>
  96. <!-- 阿里数据库连接池 -->
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid-spring-boot-starter</artifactId>
  100. <version>${druid.version}</version>
  101. </dependency>
  102. <!-- 解析客户端操作系统、浏览器等 -->
  103. <dependency>
  104. <groupId>eu.bitwalker</groupId>
  105. <artifactId>UserAgentUtils</artifactId>
  106. <version>${bitwalker.version}</version>
  107. </dependency>
  108. <!-- pagehelper 分页插件 -->
  109. <dependency>
  110. <groupId>com.github.pagehelper</groupId>
  111. <artifactId>pagehelper-spring-boot-starter</artifactId>
  112. <version>${pagehelper.boot.version}</version>
  113. </dependency>
  114. <!-- 获取系统信息 -->
  115. <dependency>
  116. <groupId>com.github.oshi</groupId>
  117. <artifactId>oshi-core</artifactId>
  118. <version>${oshi.version}</version>
  119. </dependency>
  120. <!-- Swagger3依赖 -->
  121. <dependency>
  122. <groupId>io.springfox</groupId>
  123. <artifactId>springfox-boot-starter</artifactId>
  124. <version>${swagger.version}</version>
  125. <exclusions>
  126. <exclusion>
  127. <groupId>io.swagger</groupId>
  128. <artifactId>swagger-models</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <!-- io常用工具类 -->
  133. <dependency>
  134. <groupId>commons-io</groupId>
  135. <artifactId>commons-io</artifactId>
  136. <version>${commons.io.version}</version>
  137. </dependency>
  138. <!-- excel工具 -->
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi-ooxml</artifactId>
  142. <version>${poi.version}</version>
  143. </dependency>
  144. <!-- velocity代码生成使用模板 -->
  145. <dependency>
  146. <groupId>org.apache.velocity</groupId>
  147. <artifactId>velocity-engine-core</artifactId>
  148. <version>${velocity.version}</version>
  149. </dependency>
  150. <!-- 阿里JSON解析器 -->
  151. <dependency>
  152. <groupId>com.alibaba.fastjson2</groupId>
  153. <artifactId>fastjson2</artifactId>
  154. <version>${fastjson.version}</version>
  155. </dependency>
  156. <!-- Token生成与解析-->
  157. <dependency>
  158. <groupId>io.jsonwebtoken</groupId>
  159. <artifactId>jjwt</artifactId>
  160. <version>${jwt.version}</version>
  161. </dependency>
  162. <!-- 验证码 -->
  163. <dependency>
  164. <groupId>pro.fessional</groupId>
  165. <artifactId>kaptcha</artifactId>
  166. <version>${kaptcha.version}</version>
  167. </dependency>
  168. <!--hutool工具包-->
  169. <dependency>
  170. <groupId>cn.hutool</groupId>
  171. <artifactId>hutool-all</artifactId>
  172. <version>${cn.hutool.all.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>de.odysseus.juel</groupId>
  176. <artifactId>juel</artifactId>
  177. <version>${de.odysseus.juel.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.httpcomponents</groupId>
  181. <artifactId>httpclient</artifactId>
  182. <version>${httpclient.version}</version>
  183. </dependency>
  184. <!--pdf-->
  185. <dependency>
  186. <groupId>com.itextpdf</groupId>
  187. <artifactId>itextpdf</artifactId>
  188. <version>${com.itextpdf.version}</version>
  189. </dependency>
  190. <!--pdf 字体-->
  191. <dependency>
  192. <groupId>com.itextpdf</groupId>
  193. <artifactId>itext-asian</artifactId>
  194. <version>${itext-asian.version}</version>
  195. </dependency>
  196. <!--thumbnailator图片处理-->
  197. <dependency>
  198. <groupId>net.coobird</groupId>
  199. <artifactId>thumbnailator</artifactId>
  200. <version>${net.coobird.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter-test</artifactId>
  205. <scope>test</scope>
  206. <version>${spring-boot.version}</version>
  207. </dependency>
  208. <!-- 添加GeoTools依赖 -->
  209. <dependency>
  210. <groupId>org.geotools</groupId>
  211. <artifactId>gt-shapefile</artifactId>
  212. <version>${geotools.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.geotools</groupId>
  216. <artifactId>gt-swing</artifactId>
  217. <version>${geotools.version}</version>
  218. </dependency>
  219. <!-- wkt转geojson -->
  220. <dependency>
  221. <groupId>org.geotools</groupId>
  222. <artifactId>gt-geojson</artifactId>
  223. <version>${geotools.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.geotools</groupId>
  227. <artifactId>gt-epsg-hsql</artifactId>
  228. <version>${geotools.version}</version>
  229. </dependency>
  230. <!-- 定时任务-->
  231. <dependency>
  232. <groupId>com.ruoyi</groupId>
  233. <artifactId>ruoyi-quartz</artifactId>
  234. <version>${ruoyi.version}</version>
  235. </dependency>
  236. <!-- 代码生成-->
  237. <dependency>
  238. <groupId>com.ruoyi</groupId>
  239. <artifactId>ruoyi-generator</artifactId>
  240. <version>${ruoyi.version}</version>
  241. </dependency>
  242. <!-- 核心模块-->
  243. <dependency>
  244. <groupId>com.ruoyi</groupId>
  245. <artifactId>ruoyi-framework</artifactId>
  246. <version>${ruoyi.version}</version>
  247. </dependency>
  248. <!-- 系统模块-->
  249. <dependency>
  250. <groupId>com.ruoyi</groupId>
  251. <artifactId>ruoyi-system</artifactId>
  252. <version>${ruoyi.version}</version>
  253. </dependency>
  254. <!-- 通用工具-->
  255. <dependency>
  256. <groupId>com.ruoyi</groupId>
  257. <artifactId>ruoyi-common</artifactId>
  258. <version>${ruoyi.version}</version>
  259. </dependency>
  260. <!-- 业务模块-->
  261. <dependency>
  262. <groupId>com.ruoyi</groupId>
  263. <artifactId>ruoyi-business</artifactId>
  264. <version>${ruoyi.version}</version>
  265. </dependency>
  266. </dependencies>
  267. </dependencyManagement>
  268. <modules>
  269. <module>ruoyi-admin</module>
  270. <module>ruoyi-framework</module>
  271. <module>ruoyi-system</module>
  272. <module>ruoyi-quartz</module>
  273. <module>ruoyi-generator</module>
  274. <module>ruoyi-common</module>
  275. <module>ruoyi-business</module>
  276. </modules>
  277. <packaging>pom</packaging>
  278. <build>
  279. <plugins>
  280. <plugin>
  281. <groupId>org.apache.maven.plugins</groupId>
  282. <artifactId>maven-compiler-plugin</artifactId>
  283. <version>3.1</version>
  284. <configuration>
  285. <source>${java.version}</source>
  286. <target>${java.version}</target>
  287. <encoding>${project.build.sourceEncoding}</encoding>
  288. </configuration>
  289. </plugin>
  290. </plugins>
  291. </build>
  292. <repositories>
  293. <repository>
  294. <id>public</id>
  295. <name>aliyun nexus</name>
  296. <url>https://maven.aliyun.com/repository/public</url>
  297. <releases>
  298. <enabled>true</enabled>
  299. </releases>
  300. </repository>
  301. <repository>
  302. <id>osgeo</id>
  303. <name>OSGeo Release Repository</name>
  304. <url>https://repo.osgeo.org/repository/release/</url>
  305. <snapshots>
  306. <enabled>false</enabled>
  307. </snapshots>
  308. <releases>
  309. <enabled>true</enabled>
  310. </releases>
  311. </repository>
  312. </repositories>
  313. <pluginRepositories>
  314. <pluginRepository>
  315. <id>public</id>
  316. <name>aliyun nexus</name>
  317. <url>https://maven.aliyun.com/repository/public</url>
  318. <releases>
  319. <enabled>true</enabled>
  320. </releases>
  321. <snapshots>
  322. <enabled>false</enabled>
  323. </snapshots>
  324. </pluginRepository>
  325. </pluginRepositories>
  326. </project>