mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-16 22:07:03 +05:30
build: use typesafe project accessors preview feature
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
de0d7b28f8
commit
789dae907a
3 changed files with 8 additions and 6 deletions
|
@ -21,9 +21,9 @@ android {
|
|||
|
||||
dependencies {
|
||||
kapt(Dependencies.AndroidX.Hilt.daggerCompiler)
|
||||
implementation(project(":api"))
|
||||
implementation(project(":common"))
|
||||
implementation(project(":database"))
|
||||
implementation(projects.api)
|
||||
implementation(projects.common)
|
||||
implementation(projects.database)
|
||||
implementation(compose.foundation)
|
||||
implementation(compose.material)
|
||||
implementation(Dependencies.AndroidX.appCompat)
|
||||
|
|
|
@ -15,9 +15,9 @@ kotlin {
|
|||
named("jvmMain") {
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(project(":api"))
|
||||
implementation(project(":common"))
|
||||
implementation(project(":database"))
|
||||
implementation(projects.api)
|
||||
implementation(projects.common)
|
||||
implementation(projects.database)
|
||||
implementation(compose.material)
|
||||
implementation(Dependencies.Kotlin.Coroutines.jvmCore)
|
||||
implementation(Dependencies.ThirdParty.kamel)
|
||||
|
|
|
@ -6,6 +6,8 @@ include(":common")
|
|||
include(":database")
|
||||
include(":desktop")
|
||||
|
||||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue