File tree 5 files changed +47
-26
lines changed
spring-boot-starter-oauth2-resource-server
spring-boot-sample-oauth2-resource-server
spring-boot-sample-reactive-oauth2-resource-server
5 files changed +47
-26
lines changed Original file line number Diff line number Diff line change 489
489
<artifactId >spring-boot-starter-oauth2-client</artifactId >
490
490
<version >${revision} </version >
491
491
</dependency >
492
+ <dependency >
493
+ <groupId >org.springframework.boot</groupId >
494
+ <artifactId >spring-boot-starter-oauth2-resource-server</artifactId >
495
+ <version >${revision} </version >
496
+ </dependency >
492
497
<dependency >
493
498
<groupId >org.springframework.boot</groupId >
494
499
<artifactId >spring-boot-starter-reactor-netty</artifactId >
Original file line number Diff line number Diff line change 57
57
<module >spring-boot-starter-mustache</module >
58
58
<module >spring-boot-starter-actuator</module >
59
59
<module >spring-boot-starter-oauth2-client</module >
60
+ <module >spring-boot-starter-oauth2-resource-server</module >
60
61
<module >spring-boot-starter-parent</module >
61
62
<module >spring-boot-starter-quartz</module >
62
63
<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"
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
+ <modelVersion >4.0.0</modelVersion >
6
+ <parent >
7
+ <groupId >org.springframework.boot</groupId >
8
+ <artifactId >spring-boot-starters</artifactId >
9
+ <version >${revision} </version >
10
+ </parent >
11
+ <artifactId >spring-boot-starter-oauth2-resource-server</artifactId >
12
+ <name >Spring Boot OAuth2 Resource Server Starter</name >
13
+ <description >Starter for using Spring Security's OAuth2 resource server features</description >
14
+ <properties >
15
+ <main .basedir>${basedir} /../../..</main .basedir>
16
+ </properties >
17
+ <dependencies >
18
+ <dependency >
19
+ <groupId >org.springframework.boot</groupId >
20
+ <artifactId >spring-boot-starter</artifactId >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >org.springframework.security</groupId >
24
+ <artifactId >spring-security-config</artifactId >
25
+ </dependency >
26
+ <dependency >
27
+ <groupId >org.springframework.security</groupId >
28
+ <artifactId >spring-security-core</artifactId >
29
+ </dependency >
30
+ <dependency >
31
+ <groupId >org.springframework.security</groupId >
32
+ <artifactId >spring-security-oauth2-resource-server</artifactId >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >org.springframework.security</groupId >
36
+ <artifactId >spring-security-oauth2-jose</artifactId >
37
+ </dependency >
38
+ </dependencies >
39
+ </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-resource-server </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-resource-server</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 >com.squareup.okhttp3</groupId >
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-resource-server </artifactId >
22
22
</dependency >
23
23
<dependency >
24
24
<groupId >org.springframework.boot</groupId >
25
25
<artifactId >spring-boot-starter-webflux</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-jose</artifactId >
34
- </dependency >
35
- <dependency >
36
- <groupId >org.springframework.security</groupId >
37
- <artifactId >spring-security-oauth2-resource-server</artifactId >
38
- </dependency >
39
27
<!-- Test -->
40
28
<dependency >
41
29
<groupId >com.squareup.okhttp3</groupId >
You can’t perform that action at this time.
0 commit comments