Skip to content

Commit

Permalink
refactor: core:common -> domain:common (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu authored Jun 20, 2024
1 parent 46aff95 commit dce63fe
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.suwiki.core.common
package com.suwiki.domain.common

import kotlin.coroutines.cancellation.CancellationException

Expand Down
2 changes: 1 addition & 1 deletion domain/lectureevaluation/editor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/lectureevaluation/my/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/lectureevaluation/viewerreporter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/login/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/notice/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/openmajor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

dependencies {
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/signup/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

dependencies {
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/timetable/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion domain/user/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

dependencies {
implementation(projects.core.model)
implementation(projects.core.common)
implementation(projects.domain.common)

implementation(libs.kotlinx.coroutines.core)
implementation(libs.hilt.core)
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ include(":app-compose")

include(":core:android")
include(":core:model")
include(":core:common")
include(":core:security")
include(":core:designsystem")
include(":core:ui")
Expand Down Expand Up @@ -75,3 +74,4 @@ include(":feature:signup")
include(":feature:login")
include(":local:common")
include(":remote:common")
include(":domain:common")

0 comments on commit dce63fe

Please sign in to comment.