Skip to content

Update Dependencies #1296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 10, 2019
Merged
Changes from 1 commit
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
8 changes: 7 additions & 1 deletion modules/docs/arrow-docs/docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ In your project's root `build.gradle` append the jcenter repository to your list
```groovy
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt/" }
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local/' }
}
}
```
Expand Down Expand Up @@ -74,13 +77,16 @@ You can find the dependencies necessary in the Basic Setup of the README at the
Add the dependencies into the project's `build.gradle`

```groovy
def arrow_version = "0.9.0"
apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'
def arrow_version = "0.9.0-SNAPSHOT"
dependencies {
compile "io.arrow-kt:arrow-core-data:$arrow_version"
compile "io.arrow-kt:arrow-syntax:$arrow_version"
compile "io.arrow-kt:arrow-typeclasses:$arrow_version"
compile "io.arrow-kt:arrow-extras:$arrow_version"
compile "io.arrow-kt:arrow-core-extensions:$arrow_version"
compile "io.arrow-kt:arrow-data-extensions:$arrow_version"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is no longer available. It's the one below arrow extras extensions, the plugin directives are fine though. Thanks!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should I delete data-core-extension or core-extensions ?
I am not sure..

compile "io.arrow-kt:arrow-extras-extensions:$arrow_version"
kapt "io.arrow-kt:arrow-meta:$arrow_version"

Expand Down