pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ruoyi</groupId>
  6. <artifactId>ruoyi</artifactId>
  7. <version>4.7.9</version>
  8. <name>easycallcenter365-gui</name>
  9. <description>easycallcenter365</description>
  10. <properties>
  11. <ruoyi.version>4.7.9</ruoyi.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  16. <spring-boot.version>2.5.15</spring-boot.version>
  17. <shiro.version>1.13.0</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  19. <druid.version>1.2.23</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <swagger.version>3.0.0</swagger.version>
  23. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  24. <fastjson.version>1.2.83</fastjson.version>
  25. <oshi.version>6.6.5</oshi.version>
  26. <commons.io.version>2.16.1</commons.io.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <!-- override dependency version -->
  30. <tomcat.version>9.0.96</tomcat.version>
  31. <logback.version>1.2.13</logback.version>
  32. <spring-framework.version>5.3.39</spring-framework.version>
  33. </properties>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <!-- 覆盖SpringFramework的依赖配置-->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-framework-bom</artifactId>
  41. <version>${spring-framework.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <!-- SpringBoot的依赖配置-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-dependencies</artifactId>
  49. <version>${spring-boot.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <!-- 覆盖logback的依赖配置-->
  54. <dependency>
  55. <groupId>ch.qos.logback</groupId>
  56. <artifactId>logback-core</artifactId>
  57. <version>${logback.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>ch.qos.logback</groupId>
  61. <artifactId>logback-classic</artifactId>
  62. <version>${logback.version}</version>
  63. </dependency>
  64. <!-- 覆盖tomcat的依赖配置-->
  65. <dependency>
  66. <groupId>org.apache.tomcat.embed</groupId>
  67. <artifactId>tomcat-embed-core</artifactId>
  68. <version>${tomcat.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.tomcat.embed</groupId>
  72. <artifactId>tomcat-embed-el</artifactId>
  73. <version>${tomcat.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.tomcat.embed</groupId>
  77. <artifactId>tomcat-embed-websocket</artifactId>
  78. <version>${tomcat.version}</version>
  79. </dependency>
  80. <!-- 阿里数据库连接池 -->
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>druid-spring-boot-starter</artifactId>
  84. <version>${druid.version}</version>
  85. </dependency>
  86. <!-- 验证码 -->
  87. <dependency>
  88. <groupId>pro.fessional</groupId>
  89. <artifactId>kaptcha</artifactId>
  90. <version>${kaptcha.version}</version>
  91. </dependency>
  92. <!-- Shiro核心框架 -->
  93. <dependency>
  94. <groupId>org.apache.shiro</groupId>
  95. <artifactId>shiro-core</artifactId>
  96. <version>${shiro.version}</version>
  97. </dependency>
  98. <!-- Shiro使用Spring框架 -->
  99. <dependency>
  100. <groupId>org.apache.shiro</groupId>
  101. <artifactId>shiro-spring</artifactId>
  102. <version>${shiro.version}</version>
  103. </dependency>
  104. <!-- Shiro使用EhCache缓存框架 -->
  105. <dependency>
  106. <groupId>org.apache.shiro</groupId>
  107. <artifactId>shiro-ehcache</artifactId>
  108. <version>${shiro.version}</version>
  109. </dependency>
  110. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  111. <dependency>
  112. <groupId>com.github.theborakompanioni</groupId>
  113. <artifactId>thymeleaf-extras-shiro</artifactId>
  114. <version>${thymeleaf.extras.shiro.version}</version>
  115. </dependency>
  116. <!-- 解析客户端操作系统、浏览器等 -->
  117. <dependency>
  118. <groupId>eu.bitwalker</groupId>
  119. <artifactId>UserAgentUtils</artifactId>
  120. <version>${bitwalker.version}</version>
  121. </dependency>
  122. <!-- pagehelper 分页插件 -->
  123. <dependency>
  124. <groupId>com.github.pagehelper</groupId>
  125. <artifactId>pagehelper-spring-boot-starter</artifactId>
  126. <version>${pagehelper.boot.version}</version>
  127. </dependency>
  128. <!-- 获取系统信息 -->
  129. <dependency>
  130. <groupId>com.github.oshi</groupId>
  131. <artifactId>oshi-core</artifactId>
  132. <version>${oshi.version}</version>
  133. </dependency>
  134. <!-- Swagger3依赖 -->
  135. <dependency>
  136. <groupId>io.springfox</groupId>
  137. <artifactId>springfox-boot-starter</artifactId>
  138. <version>${swagger.version}</version>
  139. <exclusions>
  140. <exclusion>
  141. <groupId>io.swagger</groupId>
  142. <artifactId>swagger-models</artifactId>
  143. </exclusion>
  144. </exclusions>
  145. </dependency>
  146. <!-- io常用工具类 -->
  147. <dependency>
  148. <groupId>commons-io</groupId>
  149. <artifactId>commons-io</artifactId>
  150. <version>${commons.io.version}</version>
  151. </dependency>
  152. <!-- excel工具 -->
  153. <dependency>
  154. <groupId>org.apache.poi</groupId>
  155. <artifactId>poi-ooxml</artifactId>
  156. <version>${poi.version}</version>
  157. </dependency>
  158. <!-- velocity代码生成使用模板 -->
  159. <dependency>
  160. <groupId>org.apache.velocity</groupId>
  161. <artifactId>velocity-engine-core</artifactId>
  162. <version>${velocity.version}</version>
  163. </dependency>
  164. <!-- 阿里JSON解析器 -->
  165. <dependency>
  166. <groupId>com.alibaba</groupId>
  167. <artifactId>fastjson</artifactId>
  168. <version>${fastjson.version}</version>
  169. </dependency>
  170. <!-- &lt;!&ndash; 定时任务&ndash;&gt;-->
  171. <!-- <dependency>-->
  172. <!-- <groupId>com.ruoyi</groupId>-->
  173. <!-- <artifactId>ruoyi-quartz</artifactId>-->
  174. <!-- <version>${ruoyi.version}</version>-->
  175. <!-- </dependency>-->
  176. <!-- 代码生成-->
  177. <dependency>
  178. <groupId>com.ruoyi</groupId>
  179. <artifactId>ruoyi-generator</artifactId>
  180. <version>${ruoyi.version}</version>
  181. </dependency>
  182. <!-- 核心模块-->
  183. <dependency>
  184. <groupId>com.ruoyi</groupId>
  185. <artifactId>ruoyi-framework</artifactId>
  186. <version>${ruoyi.version}</version>
  187. </dependency>
  188. <!-- 系统模块-->
  189. <dependency>
  190. <groupId>com.ruoyi</groupId>
  191. <artifactId>ruoyi-system</artifactId>
  192. <version>${ruoyi.version}</version>
  193. </dependency>
  194. <!-- 通用工具-->
  195. <dependency>
  196. <groupId>com.ruoyi</groupId>
  197. <artifactId>ruoyi-common</artifactId>
  198. <version>${ruoyi.version}</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. </pluginRepositories>
  250. </project>