Repository: incubator-weex Updated Branches: refs/heads/master 1175064cb -> 446f5db41
Add mavenLocal before jcenter repository Ensure trying to resolve dependencies from local maven cache first, before resolving from remove jcenter repository. This is due to a comment in the pull request. Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/446f5db4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/446f5db4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/446f5db4 Branch: refs/heads/master Commit: 446f5db41dc197ecceeeab9fc7d56f0c8f30987f Parents: 24e48c3 Author: Yinon Avraham <[email protected]> Authored: Tue Nov 21 11:36:42 2017 +0200 Committer: gurisxie <[email protected]> Committed: Tue Nov 21 22:55:23 2017 +0800 ---------------------------------------------------------------------- android/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/446f5db4/android/build.gradle ---------------------------------------------------------------------- diff --git a/android/build.gradle b/android/build.gradle index c51a1c3..32f7927 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,6 +1,7 @@ buildscript { repositories { + mavenLocal() jcenter() } dependencies { @@ -14,15 +15,18 @@ plugins { } repositories { + mavenLocal() jcenter() } subprojects { repositories { + mavenLocal() jcenter() } buildscript { repositories { + mavenLocal() jcenter() } dependencies {
