Question on Arrow+Gradle: <https://meta.arrow-kt.i...
# arrow-meta
j
Question on Arrow+Gradle: https://meta.arrow-kt.io/docs/apidocs/compiler-plugin/arrow.meta.plugins.hello-world/hello-world.html links to the gradle plugin page https://plugins.gradle.org/plugin/io.arrow-kt.arrow, but that's a 404. I couldn't find the current version of the arrow gradle plugin. The version I used previously doesnt't seem to be around, anymore.
t
https://github.com/arrow-kt/arrow-meta the plugin is developed here now
r
Hi @Joachim Ansorg, we changed the strategy. We'll use Gradle Plugin Portal for release versions.
We're still working with snapshot versions
So it's necessary to use the legacy plugin application:
Copy code
buildscript {
  repositories {
    maven { url "<https://oss.jfrog.org/artifactory/oss-snapshot-local/>" }
  }
  dependencies {
    classpath "io.arrow-kt:gradle-plugin:<snapshot-version>"
    classpath "io.arrow-kt:compiler-plugin:<snapshot-version>"
  }
}

apply plugin: "io.arrow-kt.arrow"
j
thank you @Rachel, that worked with
1.3.61-SNAPSHOT
👍 1
👏 1