File tree Expand file tree Collapse file tree 4 files changed +45
-13
lines changed
spring-boot-starter-oauth2-oidc-client
spring-boot-samples/spring-boot-sample-oauth2-client Expand file tree Collapse file tree 4 files changed +45
-13
lines changed Original file line number Diff line number Diff line change 470
470
<artifactId >spring-boot-starter-mustache</artifactId >
471
471
<version >${revision} </version >
472
472
</dependency >
473
+ <dependency >
474
+ <groupId >org.springframework.boot</groupId >
475
+ <artifactId >spring-boot-starter-oauth2-oidc-client</artifactId >
476
+ <version >${revision} </version >
477
+ </dependency >
473
478
<dependency >
474
479
<groupId >org.springframework.boot</groupId >
475
480
<artifactId >spring-boot-starter-reactor-netty</artifactId >
Original file line number Diff line number Diff line change 55
55
<module >spring-boot-starter-mail</module >
56
56
<module >spring-boot-starter-mustache</module >
57
57
<module >spring-boot-starter-actuator</module >
58
+ <module >spring-boot-starter-oauth2-oidc-client</module >
58
59
<module >spring-boot-starter-parent</module >
59
60
<module >spring-boot-starter-quartz</module >
60
61
<module >spring-boot-starter-reactor-netty</module >
Original file line number Diff line number Diff line change
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 http://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-starters</artifactId >
8
+ <version >${revision} </version >
9
+ </parent >
10
+ <artifactId >spring-boot-starter-oauth2-oidc-client</artifactId >
11
+ <name >Spring Boot OAuth2/OpenID Connect Client Starter</name >
12
+ <description >Starter for using Spring Security's OAuth2/OpenID Connect client features</description >
13
+ <properties >
14
+ <main .basedir>${basedir} /../../..</main .basedir>
15
+ </properties >
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >org.springframework.boot</groupId >
19
+ <artifactId >spring-boot-starter</artifactId >
20
+ </dependency >
21
+ <dependency >
22
+ <groupId >org.springframework.security</groupId >
23
+ <artifactId >spring-security-config</artifactId >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >org.springframework.security</groupId >
27
+ <artifactId >spring-security-core</artifactId >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >org.springframework.security</groupId >
31
+ <artifactId >spring-security-oauth2-client</artifactId >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.springframework.security</groupId >
35
+ <artifactId >spring-security-oauth2-jose</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change 18
18
<!-- Compile -->
19
19
<dependency >
20
20
<groupId >org.springframework.boot</groupId >
21
- <artifactId >spring-boot-starter-security </artifactId >
21
+ <artifactId >spring-boot-starter-oauth2-oidc-client </artifactId >
22
22
</dependency >
23
23
<dependency >
24
24
<groupId >org.springframework.boot</groupId >
25
25
<artifactId >spring-boot-starter-web</artifactId >
26
26
</dependency >
27
- <dependency >
28
- <groupId >org.springframework.security</groupId >
29
- <artifactId >spring-security-config</artifactId >
30
- </dependency >
31
- <dependency >
32
- <groupId >org.springframework.security</groupId >
33
- <artifactId >spring-security-oauth2-client</artifactId >
34
- </dependency >
35
- <dependency >
36
- <groupId >org.springframework.security</groupId >
37
- <artifactId >spring-security-oauth2-jose</artifactId >
38
- </dependency >
39
27
<!-- Test -->
40
28
<dependency >
41
29
<groupId >org.apache.httpcomponents</groupId >
You can’t perform that action at this time.
0 commit comments