Hi, I'm trying to modify the compiler plugin `kotl...
# announcements
a
Hi, I'm trying to modify the compiler plugin
kotlin-serialization
, but I failed to test the modified one in local. How can I use a local modified one when building?
b
Add mavenLocal as the top repository to pluginResolution (or something like this) in settings.gradle and repositories in build.gradle
I mean in your consumer project
a
@Big Chungus It seems that Kotlin will force to use the same version of the
kotlin-serialization
plugin as that of compiler. Can I test my modified plugin without building the whole compiler?
b
And that's fine, when you publish to maven local, you override existing plugin. Provided you have maven local as your first repo in gradlefiles
a
fixed by removing
kotlin-bom
1