pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>BladeX-Tool</artifactId>
  7. <groupId>org.springblade</groupId>
  8. <version>2.8.2.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>blade-starter-redis</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>${project.parent.version}</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <!--Blade-->
  17. <dependency>
  18. <groupId>org.springblade</groupId>
  19. <artifactId>blade-core-tool</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springblade</groupId>
  23. <artifactId>blade-starter-jwt</artifactId>
  24. </dependency>
  25. <!--Redis-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>io.lettuce</groupId>
  32. <artifactId>lettuce-core</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <!-- jedis操作redis -->
  37. <dependency>
  38. <groupId>redis.clients</groupId>
  39. <artifactId>jedis</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.redisson</groupId>
  43. <artifactId>redisson</artifactId>
  44. </dependency>
  45. <!-- protostuff -->
  46. <dependency>
  47. <groupId>io.protostuff</groupId>
  48. <artifactId>protostuff-core</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.protostuff</groupId>
  53. <artifactId>protostuff-runtime</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <!-- Auto -->
  57. <dependency>
  58. <groupId>org.springblade</groupId>
  59. <artifactId>blade-core-auto</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>