pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.5</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.16</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.6</pagehelper.boot.version>
  23. <fastjson.version>2.0.25</fastjson.version>
  24. <oshi.version>6.4.0</oshi.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.collections.version>3.2.2</commons.collections.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <oracle.version>11.2.0.3</oracle.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- 工作流 -->
  36. <dependency>
  37. <groupId>org.activiti</groupId>
  38. <artifactId>activiti-engine</artifactId>
  39. <version>6.0.0</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.mybatis</groupId>
  43. <artifactId>mybatis</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.activiti</groupId>
  49. <artifactId>activiti-spring</artifactId>
  50. <version>6.0.0</version>
  51. </dependency>
  52. <!--oracle驱动-->
  53. <dependency>
  54. <groupId>com.oracle</groupId>
  55. <artifactId>ojdbc6</artifactId>
  56. <version>${oracle.version}</version>
  57. </dependency>
  58. <!-- SpringBoot的依赖配置-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-dependencies</artifactId>
  62. <version>2.5.14</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <!-- 阿里数据库连接池 -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid-spring-boot-starter</artifactId>
  70. <version>${druid.version}</version>
  71. </dependency>
  72. <!-- 解析客户端操作系统、浏览器等 -->
  73. <dependency>
  74. <groupId>eu.bitwalker</groupId>
  75. <artifactId>UserAgentUtils</artifactId>
  76. <version>${bitwalker.version}</version>
  77. </dependency>
  78. <!-- pagehelper 分页插件 -->
  79. <dependency>
  80. <groupId>com.github.pagehelper</groupId>
  81. <artifactId>pagehelper-spring-boot-starter</artifactId>
  82. <version>${pagehelper.boot.version}</version>
  83. </dependency>
  84. <!-- 获取系统信息 -->
  85. <dependency>
  86. <groupId>com.github.oshi</groupId>
  87. <artifactId>oshi-core</artifactId>
  88. <version>${oshi.version}</version>
  89. </dependency>
  90. <!-- Swagger3依赖 -->
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-boot-starter</artifactId>
  94. <version>${swagger.version}</version>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>io.swagger</groupId>
  98. <artifactId>swagger-models</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <!-- io常用工具类 -->
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>${commons.io.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.fastjson2</groupId>
  129. <artifactId>fastjson2</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>pro.fessional</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. </dependencies>
  175. </dependencyManagement>
  176. <modules>
  177. <module>ruoyi-admin</module>
  178. <module>ruoyi-framework</module>
  179. <module>ruoyi-system</module>
  180. <module>ruoyi-quartz</module>
  181. <module>ruoyi-generator</module>
  182. <module>ruoyi-common</module>
  183. </modules>
  184. <packaging>pom</packaging>
  185. <build>
  186. <plugins>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-compiler-plugin</artifactId>
  190. <version>3.1</version>
  191. <configuration>
  192. <source>${java.version}</source>
  193. <target>${java.version}</target>
  194. <encoding>${project.build.sourceEncoding}</encoding>
  195. </configuration>
  196. </plugin>
  197. </plugins>
  198. </build>
  199. <repositories>
  200. <!--阿里云镜像仓库-->
  201. <repository>
  202. <id>public</id>
  203. <name>aliyun nexus</name>
  204. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  205. <releases>
  206. <enabled>true</enabled>
  207. </releases>
  208. </repository>
  209. <!--oracle驱动没有发布到中央仓库,只能从此仓库下载-->
  210. <repository>
  211. <id>jeecg</id>
  212. <name>jeecg Repository</name>
  213. <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
  214. <snapshots>
  215. <enabled>false</enabled>
  216. </snapshots>
  217. </repository>
  218. </repositories>
  219. <pluginRepositories>
  220. <pluginRepository>
  221. <id>public</id>
  222. <name>aliyun nexus</name>
  223. <url>https://maven.aliyun.com/repository/public</url>
  224. <releases>
  225. <enabled>true</enabled>
  226. </releases>
  227. <snapshots>
  228. <enabled>false</enabled>
  229. </snapshots>
  230. </pluginRepository>
  231. </pluginRepositories>
  232. </project>