I wanted to use my arrow-test project (<https://gi...
# arrow-meta
j
I wanted to use my arrow-test project (https://github.com/jansorg/arrow-meta-test), but this is failing now because it can't find the gradle plugin. And the gradle plugin page is showing version
0.0.0
, which doesn't seem to be correct, https://plugins.gradle.org/plugin/io.arrow-kt.arrow. What's the version of the gradle plugin I have to use to make this work?
r
Hi @Joachim Ansorg!
We decided to use Gradle Plugin Portal for releases
Just a sec and I share a link with you
Look for "If using a snapshot version, it must be included with 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, I'll try that one
👍 1
Thanks, it seems to working when I'm using version 1.3.61-SNAPSHOT and the gradle update demonstrated in the example. Version `0.0.0`still doesn't seem right on the Gradle portal page (https://plugins.gradle.org/plugin/io.arrow-kt.arrow)
r
Right, it was a fake version to check grants to publish from a different account
So sorry for the inconvenience
I've just deleted it
That page will show the plugin as soon as we have a release version
👍 1