|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <parent> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>3.0.4</version> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
| 10 | + </parent> |
| 11 | + <groupId>io.javatab</groupId> |
| 12 | + <artifactId>authorization-server</artifactId> |
| 13 | + <version>1.0.0</version> |
| 14 | + <name>authorization-server</name> |
| 15 | + <description>Demo project for Spring Boot</description> |
| 16 | + <properties> |
| 17 | + <java.version>17</java.version> |
| 18 | + <spring-cloud.version>2022.0.1</spring-cloud.version> |
| 19 | + </properties> |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>org.springframework.boot</groupId> |
| 23 | + <artifactId>spring-boot-starter-web</artifactId> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>org.springframework.security</groupId> |
| 27 | + <artifactId>spring-security-oauth2-authorization-server</artifactId> |
| 28 | + <version>1.0.0</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework.boot</groupId> |
| 32 | + <artifactId>spring-boot-starter-security</artifactId> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.springframework.cloud</groupId> |
| 36 | + <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.cloud</groupId> |
| 40 | + <artifactId>spring-cloud-starter-config</artifactId> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework.retry</groupId> |
| 44 | + <artifactId>spring-retry</artifactId> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework.boot</groupId> |
| 48 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework.boot</groupId> |
| 53 | + <artifactId>spring-boot-starter-test</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework.security</groupId> |
| 58 | + <artifactId>spring-security-test</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + </dependencies> |
| 62 | + |
| 63 | + <dependencyManagement> |
| 64 | + <dependencies> |
| 65 | + <dependency> |
| 66 | + <groupId>org.springframework.cloud</groupId> |
| 67 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 68 | + <version>${spring-cloud.version}</version> |
| 69 | + <type>pom</type> |
| 70 | + <scope>import</scope> |
| 71 | + </dependency> |
| 72 | + </dependencies> |
| 73 | + </dependencyManagement> |
| 74 | + |
| 75 | + <build> |
| 76 | + <plugins> |
| 77 | + <plugin> |
| 78 | + <groupId>org.springframework.boot</groupId> |
| 79 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 80 | + </plugin> |
| 81 | + </plugins> |
| 82 | + </build> |
| 83 | + |
| 84 | +</project> |
0 commit comments