pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>microarch_bg_common</artifactId>
  7. <groupId>com.gct.common</groupId>
  8. <version>0.0.3-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.gct.common.security</groupId>
  12. <artifactId>common-security</artifactId>
  13. <version>3.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. <optional>true</optional>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <version>2.3.0.RELEASE</version>
  24. </dependency>
  25. <!--spring security-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-security</artifactId>
  29. <optional>true</optional>
  30. </dependency>
  31. <!-- jwt -->
  32. <dependency>
  33. <groupId>io.jsonwebtoken</groupId>
  34. <artifactId>jjwt</artifactId>
  35. <optional>false</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-redis</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <artifactId>slf4j-api</artifactId>
  43. <groupId>org.slf4j</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>redis.clients</groupId>
  47. <artifactId>jedis</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>io.lettuce</groupId>
  51. <artifactId>lettuce-core</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>redis.clients</groupId>
  57. <artifactId>jedis</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. </dependency>
  67. </dependencies>
  68. </project>