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:
Raphael Teyssandier 2025-08-11 17:02:56 +02:00 committed by GitHub
parent 95c14f71c2
commit b89c3f8a1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
48 changed files with 431 additions and 173 deletions

View file

@ -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 {