猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

331 lines
12 KiB

1 week ago
  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.7.0</version>
  9. <name>ruoyi</name>
  10. <properties>
  11. <ruoyi.version>3.7.0</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. <druid.version>1.2.6</druid.version>
  17. <bitwalker.version>1.21</bitwalker.version>
  18. <swagger.version>3.0.0</swagger.version>
  19. <kaptcha.version>2.3.2</kaptcha.version>
  20. <mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
  21. <pagehelper.boot.version>1.3.1</pagehelper.boot.version>
  22. <fastjson.version>1.2.79</fastjson.version>
  23. <oshi.version>5.8.0</oshi.version>
  24. <jna.version>5.8.0</jna.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.fileupload.version>1.4</commons.fileupload.version>
  27. <commons.collections.version>3.2.2</commons.collections.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. <lombok.version>1.16.20</lombok.version>
  32. <mybatis.plus.version>3.3.2</mybatis.plus.version>
  33. <redisson.version>3.13.6</redisson.version>
  34. <!-- SMS 配置 -->
  35. <aliyun.sms.version>2.0.23</aliyun.sms.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- SpringBoot的依赖配置-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-dependencies</artifactId>
  44. <version>2.2.13.RELEASE</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <!-- 阿里数据库连接池 -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. <version>${druid.version}</version>
  53. </dependency>
  54. <!-- 解析客户端操作系统、浏览器等 -->
  55. <dependency>
  56. <groupId>eu.bitwalker</groupId>
  57. <artifactId>UserAgentUtils</artifactId>
  58. <version>${bitwalker.version}</version>
  59. </dependency>
  60. <!-- SpringBoot集成mybatis框架 -->
  61. <!--<dependency>
  62. <groupId>org.mybatis.spring.boot</groupId>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <version>${mybatis-spring-boot.version}</version>
  65. </dependency>-->
  66. <!-- pagehelper 分页插件 -->
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-starter</artifactId>
  70. <version>${pagehelper.boot.version}</version>
  71. </dependency>
  72. <!-- 获取系统信息 -->
  73. <dependency>
  74. <groupId>com.github.oshi</groupId>
  75. <artifactId>oshi-core</artifactId>
  76. <version>${oshi.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.java.dev.jna</groupId>
  80. <artifactId>jna</artifactId>
  81. <version>${jna.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.java.dev.jna</groupId>
  85. <artifactId>jna-platform</artifactId>
  86. <version>${jna.version}</version>
  87. </dependency>
  88. <!-- Swagger3依赖 -->
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-boot-starter</artifactId>
  92. <version>${swagger.version}</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>org.mapstruct</groupId>
  100. <artifactId>mapstruct</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <!-- io常用工具类 -->
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>${commons.io.version}</version>
  109. </dependency>
  110. <!-- 文件上传工具类 -->
  111. <dependency>
  112. <groupId>commons-fileupload</groupId>
  113. <artifactId>commons-fileupload</artifactId>
  114. <version>${commons.fileupload.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.aliyun.oss</groupId>
  118. <artifactId>aliyun-sdk-oss</artifactId>
  119. <version>3.15.2</version>
  120. </dependency>
  121. <!-- excel工具 -->
  122. <dependency>
  123. <groupId>org.apache.poi</groupId>
  124. <artifactId>poi-ooxml</artifactId>
  125. <version>${poi.version}</version>
  126. </dependency>
  127. <!-- velocity代码生成使用模板 -->
  128. <dependency>
  129. <groupId>org.apache.velocity</groupId>
  130. <artifactId>velocity</artifactId>
  131. <version>${velocity.version}</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>commons-collections</groupId>
  135. <artifactId>commons-collections</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- collections工具类 -->
  140. <dependency>
  141. <groupId>commons-collections</groupId>
  142. <artifactId>commons-collections</artifactId>
  143. <version>${commons.collections.version}</version>
  144. </dependency>
  145. <!-- 阿里JSON解析器 -->
  146. <dependency>
  147. <groupId>com.alibaba</groupId>
  148. <artifactId>fastjson</artifactId>
  149. <version>${fastjson.version}</version>
  150. </dependency>
  151. <!-- Token生成与解析-->
  152. <dependency>
  153. <groupId>io.jsonwebtoken</groupId>
  154. <artifactId>jjwt</artifactId>
  155. <version>${jwt.version}</version>
  156. </dependency>
  157. <!-- 验证码 -->
  158. <dependency>
  159. <groupId>com.github.penggle</groupId>
  160. <artifactId>kaptcha</artifactId>
  161. <version>${kaptcha.version}</version>
  162. </dependency>
  163. <!-- 定时任务-->
  164. <dependency>
  165. <groupId>com.ruoyi</groupId>
  166. <artifactId>ruoyi-quartz</artifactId>
  167. <version>${ruoyi.version}</version>
  168. </dependency>
  169. <!-- 代码生成-->
  170. <dependency>
  171. <groupId>com.ruoyi</groupId>
  172. <artifactId>ruoyi-generator</artifactId>
  173. <version>${ruoyi.version}</version>
  174. </dependency>
  175. <!-- 核心模块-->
  176. <dependency>
  177. <groupId>com.ruoyi</groupId>
  178. <artifactId>ruoyi-framework</artifactId>
  179. <version>${ruoyi.version}</version>
  180. </dependency>
  181. <!-- 系统模块-->
  182. <dependency>
  183. <groupId>com.ruoyi</groupId>
  184. <artifactId>ruoyi-system</artifactId>
  185. <version>${ruoyi.version}</version>
  186. </dependency>
  187. <!-- 通用工具-->
  188. <dependency>
  189. <groupId>com.ruoyi</groupId>
  190. <artifactId>ruoyi-common</artifactId>
  191. <version>${ruoyi.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.projectlombok</groupId>
  195. <artifactId>lombok</artifactId>
  196. <version>${lombok.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>cn.hutool</groupId>
  200. <artifactId>hutool-all</artifactId>
  201. <version>5.7.13</version>
  202. </dependency>
  203. <!-- 代码转换产生器 -->
  204. <dependency>
  205. <groupId>org.mapstruct</groupId>
  206. <artifactId>mapstruct</artifactId>
  207. <version>1.4.2.Final</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.aliyun</groupId>
  211. <artifactId>dysmsapi20170525</artifactId>
  212. <version>${aliyun.sms.version}</version>
  213. </dependency>
  214. </dependencies>
  215. </dependencyManagement>
  216. <modules>
  217. <module>ruoyi-admin</module>
  218. <module>ruoyi-framework</module>
  219. <module>ruoyi-system</module>
  220. <module>ruoyi-quartz</module>
  221. <module>ruoyi-generator</module>
  222. <module>ruoyi-common</module>
  223. <module>ruoyi-mall</module>
  224. </modules>
  225. <packaging>pom</packaging>
  226. <dependencies>
  227. <dependency>
  228. <groupId>org.projectlombok</groupId>
  229. <artifactId>lombok</artifactId>
  230. </dependency>
  231. <dependency>
  232. <groupId>cn.hutool</groupId>
  233. <artifactId>hutool-all</artifactId>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.baomidou</groupId>
  237. <artifactId>mybatis-plus-boot-starter</artifactId>
  238. <version>${mybatis.plus.version}</version>
  239. </dependency>
  240. </dependencies>
  241. <build>
  242. <plugins>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-compiler-plugin</artifactId>
  246. <version>3.8.1</version>
  247. <configuration>
  248. <source>${java.version}</source>
  249. <target>${java.version}</target>
  250. <encoding>${project.build.sourceEncoding}</encoding>
  251. <annotationProcessorPaths>
  252. <path>
  253. <groupId>org.mapstruct</groupId>
  254. <artifactId>mapstruct-processor</artifactId>
  255. <version>1.4.2.Final</version>
  256. </path>
  257. <path>
  258. <groupId>org.projectlombok</groupId>
  259. <artifactId>lombok</artifactId>
  260. <version>1.18.4</version>
  261. </path>
  262. <path>
  263. <groupId>org.projectlombok</groupId>
  264. <artifactId>lombok-mapstruct-binding</artifactId>
  265. <version>0.2.0</version>
  266. </path>
  267. </annotationProcessorPaths>
  268. </configuration>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. <repositories>
  273. <repository>
  274. <id>public</id>
  275. <name>aliyun nexus</name>
  276. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  277. <releases>
  278. <enabled>true</enabled>
  279. </releases>
  280. </repository>
  281. </repositories>
  282. <pluginRepositories>
  283. <pluginRepository>
  284. <id>public</id>
  285. <name>aliyun nexus</name>
  286. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  287. <releases>
  288. <enabled>true</enabled>
  289. </releases>
  290. <snapshots>
  291. <enabled>false</enabled>
  292. </snapshots>
  293. </pluginRepository>
  294. </pluginRepositories>
  295. </project>