Skip to content

Commit d802953

Browse files
authored
Merge pull request #388 from joreilly/type_safe_project_accessors
type safe project accessors
2 parents 8aba207 + 0cbfb1a commit d802953

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ dependencies {
103103
debugImplementation(libs.androidx.compose.ui.test.manifest)
104104

105105

106-
implementation(project(":common"))
106+
implementation(projects.common)
107107
}
108108

backend/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ kotlin {
2424

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

27-
implementation(project(":common"))
27+
implementation(projects.common)
2828
}
2929
}
3030
}

compose-desktop/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
implementation(libs.coil3.compose)
1414
implementation(libs.coil3.network.ktor)
1515

16-
implementation(project(":common"))
16+
implementation(projects.common)
1717
}
1818

1919
application {

graphql-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kotlin {
2323

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

26-
implementation(project(":common"))
26+
implementation(projects.common)
2727
}
2828
}
2929
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pluginManagement {
1717
}
1818

1919
rootProject.name = "PeopleInSpace"
20-
20+
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2121
include(":app")
2222
include(":wearApp")
2323
include(":compose-desktop")

wearApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ dependencies {
8484
debugImplementation(libs.androidx.compose.ui.test.manifest)
8585
debugImplementation(libs.androidx.tracing)
8686

87-
implementation(project(":common"))
87+
implementation(projects.common)
8888
}

0 commit comments

Comments
 (0)