diff --git a/buildSrc/src/main/kotlin/be/simplenotes/Libs.kt b/buildSrc/src/main/kotlin/be/simplenotes/Libs.kt index 665aeba..97bef55 100644 --- a/buildSrc/src/main/kotlin/be/simplenotes/Libs.kt +++ b/buildSrc/src/main/kotlin/be/simplenotes/Libs.kt @@ -3,7 +3,7 @@ package be.simplenotes object Libs { - const val arrowCore = "io.arrow-kt:arrow-core:0.11.0" + const val arrowCoreData = "io.arrow-kt:arrow-core-data:0.11.0" const val commonsCompress = "org.apache.commons:commons-compress:1.20" const val flexmark = "com.vladsch.flexmark:flexmark:0.62.2" const val flexmarkGfmTasklist = "com.vladsch.flexmark:flexmark-ext-gfm-tasklist:0.62.2" diff --git a/buildSrc/src/main/resources/exclusions/others.txt b/buildSrc/src/main/resources/exclusions/others.txt index 3e75158..7decbe1 100644 --- a/buildSrc/src/main/resources/exclusions/others.txt +++ b/buildSrc/src/main/resources/exclusions/others.txt @@ -1,4 +1,3 @@ -arrow/core/extensions/** org/checkerframework/** org/intellij/** com/google/errorprone/** diff --git a/simplenotes-app/build.gradle.kts b/simplenotes-app/build.gradle.kts index f826f12..b0553f5 100644 --- a/simplenotes-app/build.gradle.kts +++ b/simplenotes-app/build.gradle.kts @@ -16,7 +16,7 @@ dependencies { implementation(project(":simplenotes-views")) implementation(Libs.koinCore) - implementation(Libs.arrowCore) + implementation(Libs.arrowCoreData) implementation(Libs.konform) implementation(Libs.http4kCore) implementation(Libs.jettyServer) diff --git a/simplenotes-domain/build.gradle.kts b/simplenotes-domain/build.gradle.kts index 51f34ef..349529f 100644 --- a/simplenotes-domain/build.gradle.kts +++ b/simplenotes-domain/build.gradle.kts @@ -13,7 +13,7 @@ dependencies { implementation(Libs.kotlinxSerializationJson) implementation(Libs.koinCore) - implementation(Libs.arrowCore) + implementation(Libs.arrowCoreData) implementation(Libs.konform) implementation(Libs.jbcrypt) implementation(Libs.javaJwt)