pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.8.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>app-framework</artifactId>
  12. <version>0.0.2-SNAPSHOT</version>
  13. <description>
  14. framework框架核心
  15. </description>
  16. <dependencies>
  17. <!-- SpringBoot Web容器 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <!-- SpringBoot 拦截器 -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-aop</artifactId>
  26. </dependency>
  27. <!-- 阿里数据库连接池 -->
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>druid-spring-boot-starter</artifactId>
  31. </dependency>
  32. <!-- 验证码 -->
  33. <dependency>
  34. <groupId>pro.fessional</groupId>
  35. <artifactId>kaptcha</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>servlet-api</artifactId>
  39. <groupId>javax.servlet</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!-- 获取系统信息 -->
  44. <dependency>
  45. <groupId>com.github.oshi</groupId>
  46. <artifactId>oshi-core</artifactId>
  47. </dependency>
  48. <!-- 系统模块-->
  49. <dependency>
  50. <groupId>com.ruoyi</groupId>
  51. <artifactId>app-system</artifactId>
  52. <version>0.0.2-SNAPSHOT</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-extension</artifactId>
  57. <version>3.5.3.1</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. </dependencies>
  61. </project>