You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

88 lines
2.7 KiB

  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>rwk</artifactId>
  7. <groupId>com.rwk</groupId>
  8. <version>4.7.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>rwk-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. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-tomcat</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- SpringBoot 拦截器 -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-aop</artifactId>
  31. </dependency>
  32. <!-- 阿里数据库连接池 -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid-spring-boot-starter</artifactId>
  36. </dependency>
  37. <!-- 验证码 -->
  38. <dependency>
  39. <groupId>pro.fessional</groupId>
  40. <artifactId>kaptcha</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <artifactId>servlet-api</artifactId>
  44. <groupId>javax.servlet</groupId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <!-- Shiro使用Spring框架 -->
  49. <dependency>
  50. <groupId>org.apache.shiro</groupId>
  51. <artifactId>shiro-spring</artifactId>
  52. </dependency>
  53. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  54. <dependency>
  55. <groupId>com.github.theborakompanioni</groupId>
  56. <artifactId>thymeleaf-extras-shiro</artifactId>
  57. </dependency>
  58. <!-- 解析客户端操作系统、浏览器等 -->
  59. <dependency>
  60. <groupId>eu.bitwalker</groupId>
  61. <artifactId>UserAgentUtils</artifactId>
  62. </dependency>
  63. <!-- 获取系统信息 -->
  64. <dependency>
  65. <groupId>com.github.oshi</groupId>
  66. <artifactId>oshi-core</artifactId>
  67. </dependency>
  68. <!-- 系统模块-->
  69. <dependency>
  70. <groupId>com.rwk</groupId>
  71. <artifactId>rwk-system</artifactId>
  72. </dependency>
  73. </dependencies>
  74. </project>