From 44a3950d413b8d3a5cf805e4971570363870837a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EA=B0=80=EC=98=81?= Date: Mon, 26 Aug 2024 14:11:54 +0900 Subject: [PATCH] Update build.gradle --- build.gradle | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 6dab49a..788748d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,9 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.3.3' - id 'io.spring.dependency-management' version '1.1.6' + id 'org.springframework.boot' version '3.0.4' + id 'io.spring.dependency-management' version '1.1.0' } -group = 'hackers.ground' version = '0.0.1-SNAPSHOT' java { @@ -36,8 +35,32 @@ dependencies { testRuntimeOnly 'org.junit.platform:junit-platform-launcher' implementation 'com.microsoft.sqlserver:mssql-jdbc:12.2.0.jre8' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' + + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' + implementation 'org.springframework.boot:spring-boot-starter-validation' + implementation 'org.springframework.boot:spring-boot-starter-websocket' + implementation 'org.springframework.boot:spring-boot-starter-webflux' + + //smtp + implementation 'org.springframework.boot:spring-boot-starter-mail' + implementation 'org.springframework.boot:spring-boot-starter-data-redis' + implementation 'io.springfox:springfox-swagger2:3.0.0' + implementation 'io.springfox:springfox-swagger-ui:3.0.0' + + implementation 'io.jsonwebtoken:jjwt-api:0.11.2' + implementation 'io.jsonwebtoken:jjwt-impl:0.11.2' + implementation 'io.jsonwebtoken:jjwt-gson:0.11.2' + implementation 'io.jsonwebtoken:jjwt-jackson:0.11.2' + + implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' + } tasks.named('test') { useJUnitPlatform() } + +jar { + enabled = false +}