From 3caf969843d2c65d0e70b9986a8b61bda4a133fd Mon Sep 17 00:00:00 2001 From: Maurice Lam Date: Wed, 28 Dec 2016 17:55:35 -0800 Subject: [PATCH] Add repositories.properties file This file will be read by the buildSrc gradle plugin to add additional local maven repositories. This CL alone does not have any effect, as buildSrc expects the file to be next to gradlew. A manifest change would follow this to add a symlink at that location. Test: Manually tested Robolectric test runs with other local changes Bug: 32975598 Change-Id: I100b65b44ac0133a57014f7813967911db1b278c --- tools/gradle/repositories.properties | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tools/gradle/repositories.properties diff --git a/tools/gradle/repositories.properties b/tools/gradle/repositories.properties new file mode 100644 index 0000000..378d454 --- /dev/null +++ b/tools/gradle/repositories.properties @@ -0,0 +1,3 @@ +repositories { + maven { url "$rootDir/prebuilts/maven_repo/robolectric" } +}