Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
81c7ce1d
Commit
81c7ce1d
authored
Oct 24, 2018
by
Vedran Pavic
Committed by
Phillip Webb
Oct 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add starter for OAuth2 resource server
Closes gh-14950
parent
683484e4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
26 deletions
+47
-26
pom.xml
spring-boot-project/spring-boot-dependencies/pom.xml
+5
-0
pom.xml
spring-boot-project/spring-boot-starters/pom.xml
+1
-0
pom.xml
...arters/spring-boot-starter-oauth2-resource-server/pom.xml
+39
-0
pom.xml
...samples/spring-boot-sample-oauth2-resource-server/pom.xml
+1
-13
pom.xml
...pring-boot-sample-reactive-oauth2-resource-server/pom.xml
+1
-13
No files found.
spring-boot-project/spring-boot-dependencies/pom.xml
View file @
81c7ce1d
...
@@ -489,6 +489,11 @@
...
@@ -489,6 +489,11 @@
<artifactId>
spring-boot-starter-oauth2-client
</artifactId>
<artifactId>
spring-boot-starter-oauth2-client
</artifactId>
<version>
${revision}
</version>
<version>
${revision}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-oauth2-resource-server
</artifactId>
<version>
${revision}
</version>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-reactor-netty
</artifactId>
<artifactId>
spring-boot-starter-reactor-netty
</artifactId>
...
...
spring-boot-project/spring-boot-starters/pom.xml
View file @
81c7ce1d
...
@@ -57,6 +57,7 @@
...
@@ -57,6 +57,7 @@
<module>
spring-boot-starter-mustache
</module>
<module>
spring-boot-starter-mustache
</module>
<module>
spring-boot-starter-actuator
</module>
<module>
spring-boot-starter-actuator
</module>
<module>
spring-boot-starter-oauth2-client
</module>
<module>
spring-boot-starter-oauth2-client
</module>
<module>
spring-boot-starter-oauth2-resource-server
</module>
<module>
spring-boot-starter-parent
</module>
<module>
spring-boot-starter-parent
</module>
<module>
spring-boot-starter-quartz
</module>
<module>
spring-boot-starter-quartz
</module>
<module>
spring-boot-starter-reactor-netty
</module>
<module>
spring-boot-starter-reactor-netty
</module>
...
...
spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-resource-server/pom.xml
0 → 100644
View file @
81c7ce1d
<?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"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starters
</artifactId>
<version>
${revision}
</version>
</parent>
<artifactId>
spring-boot-starter-oauth2-resource-server
</artifactId>
<name>
Spring Boot OAuth2 Resource Server Starter
</name>
<description>
Starter for using Spring Security's OAuth2 resource server features
</description>
<properties>
<main.basedir>
${basedir}/../../..
</main.basedir>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-config
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-core
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-resource-server
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-jose
</artifactId>
</dependency>
</dependencies>
</project>
spring-boot-samples/spring-boot-sample-oauth2-resource-server/pom.xml
View file @
81c7ce1d
...
@@ -18,24 +18,12 @@
...
@@ -18,24 +18,12 @@
<!-- Compile -->
<!-- Compile -->
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-
security
</artifactId>
<artifactId>
spring-boot-starter-
oauth2-resource-server
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-config
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-resource-server
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-jose
</artifactId>
</dependency>
<!-- Test -->
<!-- Test -->
<dependency>
<dependency>
<groupId>
com.squareup.okhttp3
</groupId>
<groupId>
com.squareup.okhttp3
</groupId>
...
...
spring-boot-samples/spring-boot-sample-reactive-oauth2-resource-server/pom.xml
View file @
81c7ce1d
...
@@ -18,24 +18,12 @@
...
@@ -18,24 +18,12 @@
<!-- Compile -->
<!-- Compile -->
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-
security
</artifactId>
<artifactId>
spring-boot-starter-
oauth2-resource-server
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-webflux
</artifactId>
<artifactId>
spring-boot-starter-webflux
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-config
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-jose
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-resource-server
</artifactId>
</dependency>
<!-- Test -->
<!-- Test -->
<dependency>
<dependency>
<groupId>
com.squareup.okhttp3
</groupId>
<groupId>
com.squareup.okhttp3
</groupId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment