Skip to content

Commit

Permalink
chore: Gradle 종속성 구성 업데이트
Browse files Browse the repository at this point in the history
- Spring Data Redis 및 Spring Session Redis 추가로 Redis 관련 기능 지원
- Jasypt 추가로 암호화 기능 도입
- Gson 및 Jackson Databind 추가로 JSON 처리 관련 라이브러리 확장
  • Loading branch information
yechan-kim committed Nov 16, 2024
1 parent 0d2bf0c commit ac873ff
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,30 +26,40 @@ repositories {
dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'

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

// MySQL
runtimeOnly 'com.mysql:mysql-connector-j'
// OAuth2
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'

// JWT
implementation 'io.jsonwebtoken:jjwt-api:0.12.6'
implementation 'io.jsonwebtoken:jjwt-impl:0.12.6'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.6'
implementation 'com.auth0:java-jwt:4.4.0'

// OAuth2
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.session:spring-session-data-redis'

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

// MySQL
runtimeOnly 'com.mysql:mysql-connector-j'

// Jasypt
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5'

// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'

// Gson
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.google.code.gson:gson'

// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
Expand Down

0 comments on commit ac873ff

Please sign in to comment.