pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>4.0.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. </dependency>
  31. <!--验证码 -->
  32. <dependency>
  33. <groupId>com.github.penggle</groupId>
  34. <artifactId>kaptcha</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>javax.servlet-api</artifactId>
  38. <groupId>javax.servlet</groupId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <!-- Shiro使用Srping框架 -->
  43. <dependency>
  44. <groupId>org.apache.shiro</groupId>
  45. <artifactId>shiro-spring</artifactId>
  46. </dependency>
  47. <!-- Shiro使用EhCache缓存框架 -->
  48. <dependency>
  49. <groupId>org.apache.shiro</groupId>
  50. <artifactId>shiro-ehcache</artifactId>
  51. </dependency>
  52. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  53. <dependency>
  54. <groupId>com.github.theborakompanioni</groupId>
  55. <artifactId>thymeleaf-extras-shiro</artifactId>
  56. </dependency>
  57. <!-- 解析客户端操作系统、浏览器等 -->
  58. <dependency>
  59. <groupId>eu.bitwalker</groupId>
  60. <artifactId>UserAgentUtils</artifactId>
  61. </dependency>
  62. <!-- 系统模块-->
  63. <dependency>
  64. <groupId>com.ruoyi</groupId>
  65. <artifactId>ruoyi-system</artifactId>
  66. </dependency>
  67. <!-- 获取系统信息 -->
  68. <dependency>
  69. <groupId>com.github.oshi</groupId>
  70. <artifactId>oshi-core</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>net.java.dev.jna</groupId>
  74. <artifactId>jna</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>net.java.dev.jna</groupId>
  78. <artifactId>jna-platform</artifactId>
  79. </dependency>
  80. </dependencies>
  81. </project>