mirror of
https://github.com/openflocon/Flocon.git
synced 2026-04-30 18:39:31 +00:00
Feature/domain (#86)
* feature: Create :data:core * feature: Create interface * feature: Move * feature: Move * feature: Move remote datasource * fix: Repo --------- Co-authored-by: TEYSSANDIER Raphael <rteyssandier@sephora.fr>
This commit is contained in:
parent
95c14f71c2
commit
b89c3f8a1d
48 changed files with 431 additions and 173 deletions
|
|
@ -8,12 +8,24 @@ plugins {
|
|||
kotlin {
|
||||
jvm("desktop")
|
||||
|
||||
compilerOptions {
|
||||
// Pour Kotlin 1.9+
|
||||
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
|
||||
freeCompilerArgs.add("-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
|
||||
freeCompilerArgs.add("-Xcontext-parameters")
|
||||
freeCompilerArgs.add("-Xcontext-sensitive-resolution")
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
commonMain.dependencies {
|
||||
implementation(libs.kotlinx.coroutinesCore)
|
||||
implementation(libs.kotlinx.serializationJson)
|
||||
|
||||
implementation(project.dependencies.platform(libs.koin.bom))
|
||||
implementation(libs.koin.core)
|
||||
|
||||
implementation(projects.domain)
|
||||
implementation(projects.data.core)
|
||||
}
|
||||
|
||||
commonTest.dependencies {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue