rename openID module
This commit is contained in:
parent
a312ce5e11
commit
3522c0537b
|
@ -27,4 +27,5 @@ target/
|
|||
|
||||
spring-openid/src/main/resources/application.properties
|
||||
.recommenders/
|
||||
/spring-hibernate4/nbproject/
|
||||
/spring-hibernate4/nbproject/
|
||||
spring-security-openid/src/main/resources/application.properties
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -139,7 +139,7 @@
|
|||
<module>spring-mvc-web-vs-initializer</module>
|
||||
<module>spring-mvc-xml</module>
|
||||
<module>spring-mvc-simple</module>
|
||||
<module>spring-openid</module>
|
||||
<module>spring-security-openid</module>
|
||||
<module>spring-protobuf</module>
|
||||
<module>spring-quartz</module>
|
||||
<module>spring-rest-angular</module>
|
||||
|
|
|
@ -2,15 +2,13 @@
|
|||
|
||||
## OpenID Connect with Spring Security
|
||||
|
||||
|
||||
### Build the Project
|
||||
### Run the Project
|
||||
```
|
||||
mvn clean install
|
||||
mvn spring-boot:run
|
||||
```
|
||||
|
||||
|
||||
### Obtain Google App - Client ID, Secret
|
||||
- You need to get client id and client secret from [Google Developer Console](https://console.developers.google.com/project/_/apiui/credential?pli=1)
|
||||
- You need to get client id and client secret by creating a new project at [Google Developer Console](https://console.developers.google.com/project/_/apiui/credential?pli=1)
|
||||
- Make sure to add OAuth2 credentials by selecting Add credentials > OAuth 2.0 client ID
|
||||
- Make sure you set redirect URI to http://localhost:8081/google-login
|
||||
|
|
@ -3,11 +3,11 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>spring-openid</artifactId>
|
||||
<artifactId>spring-security-openid</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<name>spring-openid</name>
|
||||
<name>spring-security-openid</name>
|
||||
<description>Spring OpenID sample project</description>
|
||||
|
||||
<parent>
|
Loading…
Reference in New Issue