pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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.3.0</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.3.0</ruoyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.4</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>2.9.2</swagger.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  23. <fastjson.version>1.2.75</fastjson.version>
  24. <oshi.version>5.3.6</oshi.version>
  25. <jna.version>5.6.0</jna.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>1.7</velocity.version>
  30. <jwt.version>0.9.1</jwt.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.2.13.RELEASE</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!--阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <!-- 解析客户端操作系统、浏览器等 -->
  50. <dependency>
  51. <groupId>eu.bitwalker</groupId>
  52. <artifactId>UserAgentUtils</artifactId>
  53. <version>${bitwalker.version}</version>
  54. </dependency>
  55. <!-- pagehelper 分页插件 -->
  56. <dependency>
  57. <groupId>com.github.pagehelper</groupId>
  58. <artifactId>pagehelper-spring-boot-starter</artifactId>
  59. <version>${pagehelper.boot.version}</version>
  60. </dependency>
  61. <!-- 获取系统信息 -->
  62. <dependency>
  63. <groupId>com.github.oshi</groupId>
  64. <artifactId>oshi-core</artifactId>
  65. <version>${oshi.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>net.java.dev.jna</groupId>
  69. <artifactId>jna</artifactId>
  70. <version>${jna.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>net.java.dev.jna</groupId>
  74. <artifactId>jna-platform</artifactId>
  75. <version>${jna.version}</version>
  76. </dependency>
  77. <!-- swagger2-->
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger2</artifactId>
  81. <version>${swagger.version}</version>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>io.swagger</groupId>
  85. <artifactId>swagger-annotations</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>io.swagger</groupId>
  89. <artifactId>swagger-models</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <!-- swagger2-UI-->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger-ui</artifactId>
  97. <version>${swagger.version}</version>
  98. </dependency>
  99. <!--io常用工具类 -->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>${commons.io.version}</version>
  104. </dependency>
  105. <!--文件上传工具类 -->
  106. <dependency>
  107. <groupId>commons-fileupload</groupId>
  108. <artifactId>commons-fileupload</artifactId>
  109. <version>${commons.fileupload.version}</version>
  110. </dependency>
  111. <!-- excel工具 -->
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>${poi.version}</version>
  116. </dependency>
  117. <!--velocity代码生成使用模板 -->
  118. <dependency>
  119. <groupId>org.apache.velocity</groupId>
  120. <artifactId>velocity</artifactId>
  121. <version>${velocity.version}</version>
  122. </dependency>
  123. <!-- 阿里JSON解析器 -->
  124. <dependency>
  125. <groupId>com.alibaba</groupId>
  126. <artifactId>fastjson</artifactId>
  127. <version>${fastjson.version}</version>
  128. </dependency>
  129. <!--Token生成与解析-->
  130. <dependency>
  131. <groupId>io.jsonwebtoken</groupId>
  132. <artifactId>jjwt</artifactId>
  133. <version>${jwt.version}</version>
  134. </dependency>
  135. <!--验证码 -->
  136. <dependency>
  137. <groupId>com.github.penggle</groupId>
  138. <artifactId>kaptcha</artifactId>
  139. <version>${kaptcha.version}</version>
  140. </dependency>
  141. <!-- 定时任务-->
  142. <dependency>
  143. <groupId>com.ruoyi</groupId>
  144. <artifactId>ruoyi-quartz</artifactId>
  145. <version>${ruoyi.version}</version>
  146. </dependency>
  147. <!-- 代码生成-->
  148. <dependency>
  149. <groupId>com.ruoyi</groupId>
  150. <artifactId>ruoyi-generator</artifactId>
  151. <version>${ruoyi.version}</version>
  152. </dependency>
  153. <!-- 核心模块-->
  154. <dependency>
  155. <groupId>com.ruoyi</groupId>
  156. <artifactId>ruoyi-framework</artifactId>
  157. <version>${ruoyi.version}</version>
  158. </dependency>
  159. <!-- 系统模块-->
  160. <dependency>
  161. <groupId>com.ruoyi</groupId>
  162. <artifactId>ruoyi-system</artifactId>
  163. <version>${ruoyi.version}</version>
  164. </dependency>
  165. <!-- 通用工具-->
  166. <dependency>
  167. <groupId>com.ruoyi</groupId>
  168. <artifactId>ruoyi-common</artifactId>
  169. <version>${ruoyi.version}</version>
  170. </dependency>
  171. </dependencies>
  172. </dependencyManagement>
  173. <modules>
  174. <module>ruoyi-admin</module>
  175. <module>ruoyi-framework</module>
  176. <module>ruoyi-system</module>
  177. <module>ruoyi-quartz</module>
  178. <module>ruoyi-generator</module>
  179. <module>ruoyi-common</module>
  180. </modules>
  181. <packaging>pom</packaging>
  182. <dependencies>
  183. </dependencies>
  184. <build>
  185. <plugins>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-compiler-plugin</artifactId>
  189. <version>3.1</version>
  190. <configuration>
  191. <source>${java.version}</source>
  192. <target>${java.version}</target>
  193. <encoding>${project.build.sourceEncoding}</encoding>
  194. </configuration>
  195. </plugin>
  196. </plugins>
  197. </build>
  198. <repositories>
  199. <repository>
  200. <id>public</id>
  201. <name>aliyun nexus</name>
  202. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  203. <releases>
  204. <enabled>true</enabled>
  205. </releases>
  206. </repository>
  207. </repositories>
  208. <pluginRepositories>
  209. <pluginRepository>
  210. <id>public</id>
  211. <name>aliyun nexus</name>
  212. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  213. <releases>
  214. <enabled>true</enabled>
  215. </releases>
  216. <snapshots>
  217. <enabled>false</enabled>
  218. </snapshots>
  219. </pluginRepository>
  220. </pluginRepositories>
  221. </project>