Skip to content

Commit

Permalink
Merge pull request #388 from joreilly/type_safe_project_accessors
Browse files Browse the repository at this point in the history
type safe project accessors
  • Loading branch information
joreilly authored Oct 4, 2024
2 parents 8aba207 + 0cbfb1a commit d802953
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ dependencies {
debugImplementation(libs.androidx.compose.ui.test.manifest)


implementation(project(":common"))
implementation(projects.common)
}

2 changes: 1 addition & 1 deletion backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ kotlin {

implementation("ch.qos.logback:logback-classic:1.4.14")

implementation(project(":common"))
implementation(projects.common)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion compose-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation(libs.coil3.compose)
implementation(libs.coil3.network.ktor)

implementation(project(":common"))
implementation(projects.common)
}

application {
Expand Down
2 changes: 1 addition & 1 deletion graphql-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kotlin {

implementation("ch.qos.logback:logback-classic:1.5.8")

implementation(project(":common"))
implementation(projects.common)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pluginManagement {
}

rootProject.name = "PeopleInSpace"

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":wearApp")
include(":compose-desktop")
Expand Down
2 changes: 1 addition & 1 deletion wearApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ dependencies {
debugImplementation(libs.androidx.compose.ui.test.manifest)
debugImplementation(libs.androidx.tracing)

implementation(project(":common"))
implementation(projects.common)
}

0 comments on commit d802953

Please sign in to comment.