Also I keep getting this warning when building and...
# arrow-meta
b
Also I keep getting this warning when building and I can’t seem to figure out how to get rid of it
> Task use plugincompileKotlin
w: Some JAR files in the classpath have the Kotlin Runtime library bundled into them. This may cause difficult to debug problems if there’s a different version of the Kotlin Runtime library in the classpath. Consider removing these libraries from the classpath
w: /Users/burkhard/Projects/Kotlin/arrow-meta-examples/hello-world/create-plugin/build/libs/create-plugin-all.jar: Library has Kotlin runtime bundled into it
r
create-plugin-all.jar is the version of your plugin that runs alongside the IDEA shadowed and it contains some classes inside from the embedded Kotlin compiler. We have adjusted dependencies but for now those warnings should be safe to ignore since the compiler plugin is only applied at compile time and will not introduce transitive dependencies on your application
We are currently working on finishing proofs which is what we need to refactor Arrow and will make another meta release in a few week once that branch is marged in master
b
Yeah, I expected as much. I just wasn’t sure about this warning and I normally try to resolve all warnings before looking deeper into errors I don’t understand (like the line number issue above).