Skip to content

Commit

Permalink
enable typesafe project accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
kibettheophilus committed Jun 6, 2024
1 parent 3227f98 commit 57c95d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

pluginManagement {
includeBuild("build-logic")
repositories {
Expand Down
4 changes: 2 additions & 2 deletions shared/data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(project(":shared:datasource"))
implementation(project(":shared:domain"))
implementation(projects.shared.datasource)
implementation(projects.shared.domain)
implementation(libs.kotlinx.coroutines.core)
}
}
Expand Down

0 comments on commit 57c95d6

Please sign in to comment.