on the way home today i was thinking about.. how d...
# scripting
n
on the way home today i was thinking about.. how does the embedded compiler integrate with eg. compile plugins ? i assume using kotlinx-serialization would work since its bundled in the normal compiler, but does it have to be enabled? (never tried) and what about potential 3rd party plugins?
i
In order to be compatible with embeddable compiler, the plugins need to be prepared for it. E.g. they are prepared then they are used from gradle now. But this dual infrastructure is cumbersome, so by the time we’ll make compiler plugins more open option, we should settle on a single scheme of compiler jars delivery. Most likely it will be some shaded variant by default.