123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>dmp-comp</artifactId>
- <groupId>com.persagy</groupId>
- <version>1.1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>dmp-auth-starter</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>integrated-log-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- <version>0.11.2</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <version>0.11.2</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-jackson</artifactId>
- <version>0.11.2</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </project>
|