pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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>dmp-comp</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dmp-auth-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.persagy</groupId>
  15. <artifactId>integrated-log-spring-boot-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.persagy</groupId>
  19. <artifactId>dmp-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-openfeign</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.jsonwebtoken</groupId>
  27. <artifactId>jjwt-api</artifactId>
  28. <version>0.11.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.jsonwebtoken</groupId>
  32. <artifactId>jjwt-impl</artifactId>
  33. <version>0.11.2</version>
  34. <scope>runtime</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.jsonwebtoken</groupId>
  38. <artifactId>jjwt-jackson</artifactId>
  39. <version>0.11.2</version>
  40. <scope>runtime</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>