We currently use a local artifactory repository to cache artifacts. In order to make this repo default for all projects, ~/.gradle/init.gradle is configured using the script generated by artifactory.
For 1 of our projects, some libraries are loaded into the project directory. So that project has a repository defined: flatDir name: 'localLibs', dirs: 'libs' (with an addArtifactPattern configuration). When the project is built, the dependencies are resolved, the artifactory respository is queried first. Is there a way to re-order the repositores so that localLibs is checked for the artifact before artifactory? Regards, Brett
