Probably a stupid question … but how does one write a custom compiler plugin for Kotlin?
Background: we have a custom plugin for the Java compiler, that we use to insert copy right information into each of our class files.
We want to allow for kotlin source code in our next project, and ideally: do the same thing there.
So, what would be a good way to go about that?
I only found this
page on the official documentation, but that seems to only talk about some existing compiler plugins … not how to write one yourself?!