Skip to content

Commit

Permalink
chore: 프로젝트 초기 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JiHongKim98 committed Aug 2, 2024
1 parent 129c4c6 commit 999df99
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,34 @@ repositories {
}

dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

// Security
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
testImplementation 'org.springframework.security:spring-security-test'

// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

// Database
runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'com.h2database:h2'

// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'

// JUnit
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

Expand Down

0 comments on commit 999df99

Please sign in to comment.