перемещение примера Discord в отдельную папку
@@ -1,7 +1,7 @@
|
|||||||
# Spring Boot + OAuth2 Discord
|
# Spring Boot + OAuth2 Discord
|
||||||
|
|
||||||
<img width="auto" height="100" src="https://spring.io/images/spring-initializr-4291cc0115eb104348717b82161a81de.svg">
|
<img alt="Spring Boot" width="auto" height="100" src="https://spring.io/images/spring-initializr-4291cc0115eb104348717b82161a81de.svg">
|
||||||
<img width="auto" height="100" src="https://www.freepngimg.com/thumb/computer/94317-teamspeak-discord-servers-computer-facial-smile-expression.png">
|
<img alt="Discord" width="auto" height="100" src="https://www.freepngimg.com/thumb/computer/94317-teamspeak-discord-servers-computer-facial-smile-expression.png">
|
||||||
|
|
||||||
## Перед запуском
|
## Перед запуском
|
||||||
### Создание Discord Application
|
### Создание Discord Application
|
||||||
@@ -33,4 +33,4 @@ spring:
|
|||||||
discord:
|
discord:
|
||||||
client-id: 965013316982423632
|
client-id: 965013316982423632
|
||||||
client-secret: yhb13RP26WxfOru9fcQ6CxPcAUWr_2q6
|
client-secret: yhb13RP26WxfOru9fcQ6CxPcAUWr_2q6
|
||||||
```
|
```
|
||||||
@@ -6,16 +6,13 @@ plugins {
|
|||||||
|
|
||||||
group = 'example.oauth2'
|
group = 'example.oauth2'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
sourceCompatibility = '11'
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor('org.projectlombok:lombok')
|
|
||||||
compileOnly('org.projectlombok:lombok')
|
|
||||||
|
|
||||||
implementation('org.springframework.boot:spring-boot-starter-web')
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
||||||
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
|
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -4,10 +4,10 @@ import org.springframework.boot.SpringApplication;
|
|||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class Application {
|
public class ApplicationDiscord {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(Application.class, args);
|
SpringApplication.run(ApplicationDiscord.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
@@ -1 +1,3 @@
|
|||||||
rootProject.name = 'spring-oauth2-discord'
|
rootProject.name = 'spring-oauth2-examples'
|
||||||
|
|
||||||
|
include('discord')
|
||||||
|
|||||||