Skip to content

Commit

Permalink
No need of Room plugin in :tasks-core
Browse files Browse the repository at this point in the history
  • Loading branch information
opatry committed Oct 12, 2024
1 parent 38907f0 commit 2073e24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }

androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
androidx-room-common = { module = "androidx.room:room-common", version.ref = "room" }
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
androidx-sqlite-bundled = { module = "androidx.sqlite:sqlite-bundled", version.ref = "sqlite" }

Expand Down
3 changes: 1 addition & 2 deletions tasks-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
plugins {
alias(libs.plugins.jetbrains.kotlin.multiplatform)
alias(libs.plugins.jetbrains.kotlin.serialization)
alias(libs.plugins.androidx.room)
}

kotlin {
Expand All @@ -42,7 +41,7 @@ kotlin {
implementation(projects.google.oauth)
implementation(projects.google.tasks)

implementation(libs.androidx.room.runtime)
implementation(libs.androidx.room.common)
}
}
}

0 comments on commit 2073e24

Please sign in to comment.