yshrsmz / kgql

GraphQL Document wrapper generator for Kotlin Multiplatform Project and Android
Apache License 2.0
57 stars 2 forks source link

Get rid of KT-27059 workaround #32

Closed micHar closed 3 years ago

micHar commented 3 years ago

Not really an issue, but wanted to tell you, that I was looking at your project to understand how to marry the codegen (kotlinpoet) jvm-only module with a multiplatform module and found out, that the workaround for https://youtrack.jetbrains.com/issue/KT-27059 is probably no longer necessary. At least for me gradle 6.5 / gradle plugin 1.4.21 it works without the hack, meaning that I can build my project just fine by referencing implementation(project(":my-multiplatform-module")) in the dependencies block of my jvm-only codegen module. Also I use build.gradle.kts but that shouldn't change anything, I think.

yshrsmz commented 3 years ago

Thanks, I've just removed the workaround!