0

add google oauth2

This commit is contained in:
lcarlyl
2022-04-21 18:34:10 +03:00
parent 3fa106491a
commit cf3780844d
15 changed files with 155 additions and 0 deletions

22
google/build.gradle Normal file
View File

@@ -0,0 +1,22 @@
plugins {
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'example.oauth2'
version = '1.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-freemarker')
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('org.springframework.security:spring-security-oauth2-client')
implementation('org.springframework.security:spring-security-oauth2-jose:5.6.3')
}