Skip to content

Commit

Permalink
Chore : core:common 모듈에 대한 의존성을 data 모듈에서 api 로 선언해 의존성 전파
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Jun 3, 2024
1 parent 977e788 commit a21f943
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))
implementation(project(":feature:auth"))
implementation(project(":feature:home"))
Expand Down
2 changes: 1 addition & 1 deletion data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
}

dependencies {
implementation(project(":core:common"))
api(project(":core:common"))

kapt(libs.hilt.android.compiler)
implementation(libs.coroutines.android)
Expand Down
1 change: 0 additions & 1 deletion feature/auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))

kapt(libs.hilt.android.compiler)
Expand Down
1 change: 0 additions & 1 deletion feature/home/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))

kapt(libs.hilt.android.compiler)
Expand Down
1 change: 0 additions & 1 deletion feature/map/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))

kapt(libs.hilt.android.compiler)
Expand Down
1 change: 0 additions & 1 deletion feature/mypage/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))

kapt(libs.hilt.android.compiler)
Expand Down
1 change: 0 additions & 1 deletion feature/note/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ android {

dependencies {
implementation(project(":core:design"))
implementation(project(":core:common"))
implementation(project(":data"))

kapt(libs.hilt.android.compiler)
Expand Down

0 comments on commit a21f943

Please sign in to comment.