pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>lineage</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.1.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. <exclusions>
  21. <exclusion>
  22. <artifactId>spring-boot-starter-tomcat</artifactId>
  23. <groupId>org.springframework.boot</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- web 容器使用 undertow 性能更强 -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-undertow</artifactId>
  31. </dependency>
  32. <!-- SpringBoot 拦截器 -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-aop</artifactId>
  36. </dependency>
  37. <!-- 阿里数据库连接池 -->
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>druid-spring-boot-starter</artifactId>
  41. </dependency>
  42. <!-- 验证码 -->
  43. <dependency>
  44. <groupId>com.github.penggle</groupId>
  45. <artifactId>kaptcha</artifactId>
  46. <exclusions>
  47. <exclusion>
  48. <artifactId>javax.servlet-api</artifactId>
  49. <groupId>javax.servlet</groupId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <!-- 获取系统信息 -->
  54. <dependency>
  55. <groupId>com.github.oshi</groupId>
  56. <artifactId>oshi-core</artifactId>
  57. </dependency>
  58. <!-- 系统模块-->
  59. <dependency>
  60. <groupId>com.ruoyi</groupId>
  61. <artifactId>ruoyi-system</artifactId>
  62. </dependency>
  63. </dependencies>
  64. </project>