pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <!-- SpringBoot 拦截器 -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-aop</artifactId>
  24. </dependency>
  25. <!--阿里数据库连接池 -->
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>druid-spring-boot-starter</artifactId>
  29. <version>${druid.version}</version>
  30. </dependency>
  31. <!--验证码 -->
  32. <dependency>
  33. <groupId>com.github.penggle</groupId>
  34. <artifactId>kaptcha</artifactId>
  35. <version>${kaptcha.version}</version>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>javax.servlet-api</artifactId>
  39. <groupId>javax.servlet</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!--Shiro核心框架 -->
  44. <dependency>
  45. <groupId>org.apache.shiro</groupId>
  46. <artifactId>shiro-core</artifactId>
  47. <version>${shiro.version}</version>
  48. </dependency>
  49. <!-- Shiro使用Srping框架 -->
  50. <dependency>
  51. <groupId>org.apache.shiro</groupId>
  52. <artifactId>shiro-spring</artifactId>
  53. <version>${shiro.version}</version>
  54. </dependency>
  55. <!-- Shiro使用EhCache缓存框架 -->
  56. <dependency>
  57. <groupId>org.apache.shiro</groupId>
  58. <artifactId>shiro-ehcache</artifactId>
  59. <version>${shiro.version}</version>
  60. </dependency>
  61. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  62. <dependency>
  63. <groupId>com.github.theborakompanioni</groupId>
  64. <artifactId>thymeleaf-extras-shiro</artifactId>
  65. <version>${thymeleaf.extras.shiro.version}</version>
  66. </dependency>
  67. <!-- 解析客户端操作系统、浏览器等 -->
  68. <dependency>
  69. <groupId>eu.bitwalker</groupId>
  70. <artifactId>UserAgentUtils</artifactId>
  71. <version>${bitwalker.version}</version>
  72. </dependency>
  73. <!-- 系统模块-->
  74. <dependency>
  75. <groupId>com.ruoyi</groupId>
  76. <artifactId>ruoyi-system</artifactId>
  77. <version>${ruoyi.version}</version>
  78. </dependency>
  79. </dependencies>
  80. </project>