pom.xml 8.7 KB

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