Skip to content

Commit

Permalink
moneymong-372 feat: core:model 모듈 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Heonbyeong committed May 17, 2024
1 parent ef81d87 commit 28987ba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ dependencies {
implementation(projects.core.ui)
implementation(projects.core.designSystem)
implementation(projects.core.common)
implementation(projects.core.model)
implementation(projects.core.network)

implementation(projects.data)
Expand Down
1 change: 1 addition & 0 deletions core/model/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
10 changes: 10 additions & 0 deletions core/model/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
plugins {
id("java-library")
alias(libs.plugins.kotlin.jvm)
}

java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ include(":domain")
include(":core:design-system")
include(":core:ui")
include(":core:common")
include(":core:model")
include(":core:network")
include(":feature:sign")
include(":feature:ledger")
Expand Down

0 comments on commit 28987ba

Please sign in to comment.