Skip to content

Commit

Permalink
Conf: control transitive dependencies (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Mar 2, 2020
1 parent db6d671 commit ec03dcb
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions arrow-libs/examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,23 @@ idea {
}

dependencies {
compile "io.arrow-kt:arrow-fx:$VERSION_NAME"
compile "io.arrow-kt:arrow-fx-rx2:$VERSION_NAME"
compile "io.arrow-kt:arrow-optics:$VERSION_NAME"
compile "io.arrow-kt:arrow-ui:$VERSION_NAME"
compile "io.arrow-kt:arrow-validation:$VERSION_NAME"
compile "io.arrow-kt:arrow-mtl:$VERSION_NAME"
kapt "io.arrow-kt:arrow-meta:$VERSION_NAME"
kaptTest "io.arrow-kt:arrow-meta:$VERSION_NAME"
compileOnly "io.arrow-kt:arrow-meta:$VERSION_NAME"
testCompileOnly "io.arrow-kt:arrow-meta:$VERSION_NAME"

testRuntime("org.junit.vintage:junit-vintage-engine:$JUNIT_VINTAGE_VERSION")
testCompile "io.kotlintest:kotlintest-runner-junit5:$KOTLIN_TEST_VERSION"

compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLINX_COROUTINES_VERSION"
testCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
testCompile "org.jetbrains.kotlinx:kotlinx-coroutines-core:$KOTLINX_COROUTINES_VERSION"
testImplementation "io.arrow-kt:arrow-annotations:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-core-data:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-core:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-fx:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-fx-rx2:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-optics:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-ui:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-ui-data:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-validation:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-mtl:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-mtl-data:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-meta:$VERSION_NAME", excludeArrow
testImplementation "io.arrow-kt:arrow-meta:$VERSION_NAME", excludeArrow
testImplementation "io.kotlintest:kotlintest-runner-junit5:$KOTLIN_TEST_VERSION", excludeArrow
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:$JUNIT_VINTAGE_VERSION"
}

0 comments on commit ec03dcb

Please sign in to comment.