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
09e09bf4
Commit
09e09bf4
authored
Aug 17, 2018
by
Madhura Bhave
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add starter for OpenID Connect/OAuth2 client
Closes gh-13830
parent
1c224e5f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
13 deletions
+45
-13
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
...t-starters/spring-boot-starter-oauth2-oidc-client/pom.xml
+38
-0
pom.xml
spring-boot-samples/spring-boot-sample-oauth2-client/pom.xml
+1
-13
No files found.
spring-boot-project/spring-boot-dependencies/pom.xml
View file @
09e09bf4
...
@@ -470,6 +470,11 @@
...
@@ -470,6 +470,11 @@
<artifactId>
spring-boot-starter-mustache
</artifactId>
<artifactId>
spring-boot-starter-mustache
</artifactId>
<version>
${revision}
</version>
<version>
${revision}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-oauth2-oidc-client
</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 @
09e09bf4
...
@@ -55,6 +55,7 @@
...
@@ -55,6 +55,7 @@
<module>
spring-boot-starter-mail
</module>
<module>
spring-boot-starter-mail
</module>
<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-oidc-client
</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-oidc-client/pom.xml
0 → 100644
View file @
09e09bf4
<?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-oidc-client
</artifactId>
<name>
Spring Boot OAuth2/OpenID Connect Client Starter
</name>
<description>
Starter for using Spring Security's OAuth2/OpenID Connect client 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-client
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-jose
</artifactId>
</dependency>
</dependencies>
</project>
spring-boot-samples/spring-boot-sample-oauth2-client/pom.xml
View file @
09e09bf4
...
@@ -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-oidc-client
</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-client
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-oauth2-jose
</artifactId>
</dependency>
<!-- Test -->
<!-- Test -->
<dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<groupId>
org.apache.httpcomponents
</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