猫妈狗爸伴宠师小程序后端代码
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.

77 lines
2.4 KiB

2 months ago
3 weeks ago
2 months 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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.7.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot Web容器 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <!-- SpringBoot 拦截器 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aop</artifactId>
  25. </dependency>
  26. <!-- 阿里数据库连接池 -->
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid-spring-boot-starter</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>com.sun</groupId>
  33. <artifactId>tools</artifactId>
  34. </exclusion>
  35. <exclusion>
  36. <groupId>com.sun</groupId>
  37. <artifactId>jconsole</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- 验证码 -->
  42. <dependency>
  43. <groupId>com.github.penggle</groupId>
  44. <artifactId>kaptcha</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <groupId>javax.servlet</groupId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <!-- 获取系统信息 -->
  53. <dependency>
  54. <groupId>com.github.oshi</groupId>
  55. <artifactId>oshi-core</artifactId>
  56. </dependency>
  57. <!-- 系统模块-->
  58. <dependency>
  59. <groupId>com.ruoyi</groupId>
  60. <artifactId>ruoyi-system</artifactId>
  61. </dependency>
  62. <!-- <dependency>-->
  63. <!-- <groupId>com.ruoyi</groupId>-->
  64. <!-- <artifactId>ruoyi-catdog</artifactId>-->
  65. <!-- </dependency>-->
  66. </dependencies>
  67. </project>