So I’m pretty sure this is doable, I’m just having a hard time finding the right set of things to search for to find who ahs done it or described it… if anyone can point me in the right direction I’d be appreciative.
I want to be able to have all parts of tool chain, configuration, and other non-source inputs partipate in the dependency resolution process. So, for example, I want a python project to be able to actually declare a dependency on python 3.6 and have that interpreter pulled down as a versioned package and available to the gradle plugin that is driving a python build.
Python is just one example, one can imagine any number of tools that might not be present on the machine doing the building which could be fetched as versioned dependencies. Maven doesn’t seem appropriate for this, how would you all approach this? Or are there docs for how to do it, somewhere?
I’m learning gradle and consider this a learning exercise as well as a practical matter, so I’m prepared to write custom plugins or custom dep resolvers etc if necessary.