Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Fix #139: Wrong scope for dependencies #140

Merged
merged 4 commits into from
Apr 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions arrow-fx-kotlinx-coroutines/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ apply from: "$DOC_CONF"
apply from: "$PUBLISH_CONF"

dependencies {
implementation project(':arrow-fx')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLINX_COROUTINES_VERSION"
api project(':arrow-fx')
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLINX_COROUTINES_VERSION"

testCompile project(":arrow-fx-test")
testImplementation project(":arrow-fx-test")
testImplementation project(':arrow-fx')
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$KOTLINX_COROUTINES_VERSION"
}