|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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"> |
| 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 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 | <groupId>com.baeldung.keycloak</groupId>
|
7 | 7 | <artifactId>spring-boot-keycloak-2</artifactId>
|
|
17 | 17 | </parent>
|
18 | 18 |
|
19 | 19 | <dependencies>
|
20 |
| - <dependency> |
21 |
| - <groupId>org.springframework.boot</groupId> |
22 |
| - <artifactId>spring-boot-starter-web</artifactId> |
23 |
| - </dependency> |
24 |
| - <dependency> |
25 |
| - <groupId>org.springframework.boot</groupId> |
26 |
| - <artifactId>spring-boot-starter-security</artifactId> |
27 |
| - </dependency> |
28 |
| - <dependency> |
29 |
| - <groupId>org.springframework.boot</groupId> |
30 |
| - <artifactId>spring-boot-starter-oauth2-resource-server</artifactId> |
31 |
| - </dependency> |
32 |
| - <dependency> |
33 |
| - <groupId>org.springframework.boot</groupId> |
34 |
| - <artifactId>spring-boot-starter-oauth2-client</artifactId> |
35 |
| - </dependency> |
36 |
| - <dependency> |
37 |
| - <groupId>org.springframework.boot</groupId> |
38 |
| - <artifactId>spring-boot-starter-test</artifactId> |
39 |
| - <scope>test</scope> |
40 |
| - </dependency> |
41 |
| - |
42 |
| - <!-- https://mvnrepository.com/artifact/org.keycloak/keycloak-admin-client --> |
43 | 20 | <dependency>
|
44 | 21 | <groupId>org.keycloak</groupId>
|
45 | 22 | <artifactId>keycloak-admin-client</artifactId>
|
46 | 23 | <version>${keycloak.version}</version>
|
47 | 24 | </dependency>
|
48 |
| - |
49 | 25 | <dependency>
|
50 | 26 | <groupId>org.keycloak</groupId>
|
51 | 27 | <artifactId>keycloak-core</artifactId>
|
|
58 | 34 | <version>${keycloak.version}</version>
|
59 | 35 | <scope>provided</scope>
|
60 | 36 | </dependency>
|
61 |
| - |
62 | 37 | <dependency>
|
63 | 38 | <groupId>org.keycloak</groupId>
|
64 | 39 | <artifactId>keycloak-server-spi-private</artifactId>
|
|
71 | 46 | <scope>provided</scope>
|
72 | 47 | <version>${keycloak.version}</version>
|
73 | 48 | </dependency>
|
74 |
| - |
75 | 49 | <dependency>
|
76 | 50 | <groupId>org.springframework.boot</groupId>
|
77 | 51 | <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
|
0 commit comments