云链智安
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>yubb</artifactId>
  7. <groupId>com.yubb</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yubb-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.jsonwebtoken</groupId>
  18. <artifactId>jjwt-api</artifactId>
  19. <version>0.11.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.jsonwebtoken</groupId>
  23. <artifactId>jjwt-impl</artifactId>
  24. <version>0.11.2</version>
  25. <scope>runtime</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.jsonwebtoken</groupId>
  29. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  30. <version>0.11.2</version>
  31. <scope>runtime</scope>
  32. </dependency>
  33. <!-- SpringBoot Web容器 -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <!-- SpringBoot 拦截器 -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-aop</artifactId>
  42. </dependency>
  43. <!-- 阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. </dependency>
  48. <!-- 验证码 -->
  49. <dependency>
  50. <groupId>com.github.penggle</groupId>
  51. <artifactId>kaptcha</artifactId>
  52. <exclusions>
  53. <exclusion>
  54. <artifactId>javax.servlet-api</artifactId>
  55. <groupId>javax.servlet</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- Shiro使用Spring框架 -->
  60. <dependency>
  61. <groupId>org.apache.shiro</groupId>
  62. <artifactId>shiro-spring</artifactId>
  63. </dependency>
  64. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  65. <dependency>
  66. <groupId>com.github.theborakompanioni</groupId>
  67. <artifactId>thymeleaf-extras-shiro</artifactId>
  68. </dependency>
  69. <!-- 解析客户端操作系统、浏览器等 -->
  70. <dependency>
  71. <groupId>eu.bitwalker</groupId>
  72. <artifactId>UserAgentUtils</artifactId>
  73. </dependency>
  74. <!-- 获取系统信息 -->
  75. <dependency>
  76. <groupId>com.github.oshi</groupId>
  77. <artifactId>oshi-core</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.session</groupId>
  81. <artifactId>spring-session-jdbc</artifactId>
  82. </dependency>
  83. <!-- 系统模块-->
  84. <dependency>
  85. <groupId>com.yubb</groupId>
  86. <artifactId>yubb-system</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.shiro</groupId>
  90. <artifactId>shiro-ehcache</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.data</groupId>
  94. <artifactId>spring-data-redis</artifactId>
  95. </dependency>
  96. </dependencies>
  97. </project>