pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. <!-- 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. <version>${druid.version}</version>
  31. </dependency>
  32. <!--验证码 -->
  33. <dependency>
  34. <groupId>com.github.penggle</groupId>
  35. <artifactId>kaptcha</artifactId>
  36. <version>${kaptcha.version}</version>
  37. <exclusions>
  38. <exclusion>
  39. <artifactId>javax.servlet-api</artifactId>
  40. <groupId>javax.servlet</groupId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <!-- SpringBoot集成thymeleaf模板 -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  48. </dependency>
  49. <!--Shiro核心框架 -->
  50. <dependency>
  51. <groupId>org.apache.shiro</groupId>
  52. <artifactId>shiro-core</artifactId>
  53. <version>${shiro.version}</version>
  54. </dependency>
  55. <!-- Shiro使用Srping框架 -->
  56. <dependency>
  57. <groupId>org.apache.shiro</groupId>
  58. <artifactId>shiro-spring</artifactId>
  59. <version>${shiro.version}</version>
  60. </dependency>
  61. <!-- Shiro使用EhCache缓存框架 -->
  62. <dependency>
  63. <groupId>org.apache.shiro</groupId>
  64. <artifactId>shiro-ehcache</artifactId>
  65. <version>${shiro.version}</version>
  66. </dependency>
  67. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  68. <dependency>
  69. <groupId>com.github.theborakompanioni</groupId>
  70. <artifactId>thymeleaf-extras-shiro</artifactId>
  71. <version>${thymeleaf.extras.shiro.version}</version>
  72. </dependency>
  73. <!-- 解析客户端操作系统、浏览器等 -->
  74. <dependency>
  75. <groupId>eu.bitwalker</groupId>
  76. <artifactId>UserAgentUtils</artifactId>
  77. <version>${bitwalker.version}</version>
  78. </dependency>
  79. <!-- 系统模块-->
  80. <dependency>
  81. <groupId>com.ruoyi</groupId>
  82. <artifactId>ruoyi-system</artifactId>
  83. <version>${ruoyi.version}</version>
  84. </dependency>
  85. <!-- 定时任务-->
  86. <dependency>
  87. <groupId>com.ruoyi</groupId>
  88. <artifactId>ruoyi-quartz</artifactId>
  89. <version>${ruoyi.version}</version>
  90. </dependency>
  91. <!-- 代码生成-->
  92. <dependency>
  93. <groupId>com.ruoyi</groupId>
  94. <artifactId>ruoyi-generator</artifactId>
  95. <version>${ruoyi.version}</version>
  96. </dependency>
  97. </dependencies>
  98. </project>