are there any good sources on how to write a custo...
# gradle
c
are there any good sources on how to write a custom gradle plugin in kotlin? in nearly all of my prjects i am using a bunch of different gradle plugins and corresponding configurations over and over again. now i am curious if it wouldn’t make sense to bundle all this in one opinionated plugin.
b
Have a look into convention plugins. Here's an example.
c
a
You could use
gradle init
command to setup a project template to start writing plugins.
👍 1
c
nice convention plugins is what i am looking for. perfect thx 👌