General understanding question - what are the mechanisms for injecting configuration at build time on the CI/CD server? For example, we want to ensure that every project is getting its dependencies via our Artifactory instance - I can see how we can tell the user to configure their project with artifactory plugin in build.gradle file, but it depends on them doing the right thing in every project and us trusting them to do the right thing. Is there a way to automatically inject plugins/configuration into the build project that does not depend on contents of build.gradle? Or at least a way to check that a plugin is installed/used/configured? I found the enforcer plugin, but again, without ability to apply it from outside the source code, its is not of much use, as both the enforcement rules and what they are applying to are written by same people in same place. There must be some equivalent of Maven’s settings.xml? What am i missing?