arrow-kt / arrow-integrations

Λrrow Integrations is part of Λrrow, a functional companion to Kotlin's Standard Library
http://arrow-kt.io
Other
27 stars 6 forks source link

Where is arrow-integrations-jackson-module published? #18

Closed KushalP closed 4 years ago

KushalP commented 4 years ago

Hello! I'd really like to use OptionModule that is within arrow-integrations-jackson-module. How can I use this module? Is it published anywhere?

rachelcarmena commented 4 years ago

Hi! That module is only available in OSS so far: https://oss.jfrog.org/artifactory/oss-snapshot-local/io/arrow-kt/arrow-integration-jackson-module/

So the module is:

"io.arrow-kt:arrow-integration-jackson-module:<SNAPSHOT-VERSION>"

and it would be necessary to add OSS repository:

maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local/" }

An inconsistency problem exists with that module: #19

rachelcarmena commented 4 years ago

Hi @KushalP , #19 has been solved and the module is available in https://oss.jfrog.org/artifactory/oss-snapshot-local/io/arrow-kt/arrow-integrations-jackson-module/ now so the dependency would be:

"io.arrow-kt:arrow-integrations-jackson-module:<SNAPSHOT-VERSION>"

Thanks for your interest!!