0

перемещение примера Discord в отдельную папку

This commit is contained in:
2022-04-17 15:09:10 +03:00
parent 5f1c2296d1
commit 0ff46185c2
18 changed files with 10 additions and 11 deletions

21
discord/build.gradle Normal file
View File

@@ -0,0 +1,21 @@
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-thymeleaf')
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('org.springframework.security:spring-security-oauth2-client')
}