Skip to content

Commit

Permalink
[UKET-8] 외부 모듈 설정 및 통합 (#109)
Browse files Browse the repository at this point in the history
* feat: migration 모듈에 외부 module 종속성 추가

* feat: 중복 모듈 삭제
  • Loading branch information
sam971114 authored Mar 2, 2025
1 parent 0b842bf commit c9f8506
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion migration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,28 @@ dependencies {

//swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'

//ticket module
implementation project(":domain:auth-domain")
implementation project(":domain:user-domain")
implementation project(":domain:university-domain")
implementation project(":domain:event-domain")
implementation project(":domain:ticket-domain")
implementation project(":domain:terms-domain")

implementation project(":modules:jwt-provider")
implementation project(":modules:aws-s3")
implementation project(":modules:slack")
implementation project(":modules:token-redis")
implementation project(":modules:qrcode-provider")
implementation project(":modules:lock-redis")

implementation project(":domain:form-domain")

//admin module
implementation project(":domain:admin-auth-domain")
}

test {
useJUnitPlatform()
}
}

0 comments on commit c9f8506

Please sign in to comment.