pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. <packaging>pom</packaging>
  10. <name>RuoYi</name>
  11. <description>RuoYi 若依管理系统</description>
  12. <modules>
  13. <module>ruoyi-common</module>
  14. <module>ruoyi-framework</module>
  15. <module>ruoyi-system</module>
  16. <module>ruoyi-quartz</module>
  17. <module>ruoyi-generator</module>
  18. <module>ruoyi-admin</module>
  19. </modules>
  20. <properties>
  21. <java.version>1.8</java.version>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <spring-boot.version>2.5.15</spring-boot.version>
  25. <spring-cloud.version>2020.0.3</spring-cloud.version>
  26. <pagehelper.version>1.3.0</pagehelper.version>
  27. <fastjson.version>2.0.15</fastjson.version>
  28. <commons-io.version>2.6</commons-io.version>
  29. <poi.version>4.1.2</poi.version>
  30. <jjwt.version>0.9.1</jjwt.version>
  31. <useragent.version>1.21</useragent.version>
  32. <kaptcha.version>2.3.2</kaptcha.version>
  33. <oshi.version>5.8.5</oshi.version>
  34. <velocity.version>2.2</velocity.version>
  35. </properties>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-dependencies</artifactId>
  41. <version>${spring-boot.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-dependencies</artifactId>
  48. <version>${spring-cloud.version}</version>
  49. <type>pom</type>
  50. <scope>import</scope>
  51. </dependency>
  52. <!-- 核心模块 -->
  53. <dependency>
  54. <groupId>com.ruoyi</groupId>
  55. <artifactId>ruoyi-common</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.ruoyi</groupId>
  60. <artifactId>ruoyi-framework</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.ruoyi</groupId>
  65. <artifactId>ruoyi-system</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.ruoyi</groupId>
  70. <artifactId>ruoyi-quartz</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.ruoyi</groupId>
  75. <artifactId>ruoyi-generator</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <!-- swagger3 -->
  79. <dependency>
  80. <groupId>io.springfox</groupId>
  81. <artifactId>springfox-boot-starter</artifactId>
  82. <version>3.0.0</version>
  83. </dependency>
  84. <!-- mysql驱动 -->
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <version>8.0.33</version>
  89. </dependency>
  90. <!-- mybatis -->
  91. <dependency>
  92. <groupId>org.mybatis.spring.boot</groupId>
  93. <artifactId>mybatis-spring-boot-starter</artifactId>
  94. <version>2.1.4</version>
  95. </dependency>
  96. <!-- druid数据源 -->
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid-spring-boot-starter</artifactId>
  100. <version>1.1.24</version>
  101. </dependency>
  102. <!-- quartz -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-quartz</artifactId>
  106. </dependency>
  107. <!-- jsoup -->
  108. <dependency>
  109. <groupId>org.jsoup</groupId>
  110. <artifactId>jsoup</artifactId>
  111. <version>1.14.3</version>
  112. </dependency>
  113. <!-- pagehelper -->
  114. <dependency>
  115. <groupId>com.github.pagehelper</groupId>
  116. <artifactId>pagehelper-spring-boot-starter</artifactId>
  117. <version>${pagehelper.version}</version>
  118. </dependency>
  119. <!-- fastjson2 -->
  120. <dependency>
  121. <groupId>com.alibaba.fastjson2</groupId>
  122. <artifactId>fastjson2</artifactId>
  123. <version>${fastjson.version}</version>
  124. </dependency>
  125. <!-- commons-io -->
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. <version>${commons-io.version}</version>
  130. </dependency>
  131. <!-- poi -->
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml</artifactId>
  135. <version>${poi.version}</version>
  136. </dependency>
  137. <!-- jjwt -->
  138. <dependency>
  139. <groupId>io.jsonwebtoken</groupId>
  140. <artifactId>jjwt</artifactId>
  141. <version>${jjwt.version}</version>
  142. </dependency>
  143. <!-- UserAgentUtils -->
  144. <dependency>
  145. <groupId>eu.bitwalker</groupId>
  146. <artifactId>UserAgentUtils</artifactId>
  147. <version>${useragent.version}</version>
  148. </dependency>
  149. <!-- kaptcha -->
  150. <dependency>
  151. <groupId>com.github.penggle</groupId>
  152. <artifactId>kaptcha</artifactId>
  153. <version>2.3.2</version>
  154. </dependency>
  155. <!-- oshi-core -->
  156. <dependency>
  157. <groupId>com.github.oshi</groupId>
  158. <artifactId>oshi-core</artifactId>
  159. <version>${oshi.version}</version>
  160. </dependency>
  161. <!-- velocity -->
  162. <dependency>
  163. <groupId>org.apache.velocity</groupId>
  164. <artifactId>velocity-engine-core</artifactId>
  165. <version>${velocity.version}</version>
  166. </dependency>
  167. <!-- OkHttp (required by MinIO SDK) -->
  168. <dependency>
  169. <groupId>com.squareup.okhttp3</groupId>
  170. <artifactId>okhttp</artifactId>
  171. <version>4.12.0</version>
  172. </dependency>
  173. </dependencies>
  174. </dependencyManagement>
  175. <build>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-maven-plugin</artifactId>
  180. <version>${spring-boot.version}</version>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-compiler-plugin</artifactId>
  185. <version>3.5.1</version>
  186. <configuration>
  187. <source>${java.version}</source>
  188. <target>${java.version}</target>
  189. <encoding>${project.build.sourceEncoding}</encoding>
  190. </configuration>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. </project>