Where I work we have a huge ivy repository that is stored in a file system (distributed across multiple regions).
How can I make gradle support that repository?
I’m thinking about creating a custom Resolver and artifact repository components and inject them to Gradle.
Actually i found out the issue was my dependency in the form:
compile (‘myorg.campaign:schema:3.0+:runtime’) the last part is the classifier not the configuration.
change it to compile group: ‘someOrganization’, name: ‘someModule’, version: ‘1.x’, configuration: ‘runtime’
resolved my isue