Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
GayeongKimm authored Aug 26, 2024
1 parent 7a5fa86 commit 44a3950
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down Expand Up @@ -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
}

0 comments on commit 44a3950

Please sign in to comment.