I have a set of gradle options that I keep copying from project to project. In maven, I could use a super-pom or at least an archetype to reuse common things without manually copying it every time. Is there a way to pack the general settings as a plugin and reuse them, or is there another way to minimize and redistribute your company standards in a reusable way?
I would rather post general things in a maven repo, but any other way is also welcome.
Clarification: what I'm mostly looking for is something like
apply from: "foo"
and foo is not a local file, but in the bank on the way to the classes.
source share