From 4207c2072b1afdeb60155f86c239ac4883446077 Mon Sep 17 00:00:00 2001 From: Sudip Bhandari Date: Mon, 2 Mar 2020 21:59:53 +0530 Subject: [PATCH 1/3] docs: added info about necessity of adding google() to gradle repository for version 1.104+ --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 73ae6877e2..6083f5333d 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,11 @@ If you are using Maven without Bom, Add this to your dependencies. ``` If you are using Gradle, add this to your dependencies ```Groovy +repositories { + google() //this is required from version 1.104 onwards + //other repositories + } + compile 'com.google.cloud:google-cloud-storage:1.105.0' ``` If you are using SBT, add this to your dependencies From e154faacac4e54b6bb9351111a9e8e41755ac704 Mon Sep 17 00:00:00 2001 From: Sudip Bhandari Date: Thu, 5 Mar 2020 19:25:38 +0530 Subject: [PATCH 2/3] docs: removed comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6083f5333d..cc1111e963 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ If you are using Maven without Bom, Add this to your dependencies. If you are using Gradle, add this to your dependencies ```Groovy repositories { - google() //this is required from version 1.104 onwards + google() //other repositories } From 3baed8303893aaac1aadf28a040c8370444ad414 Mon Sep 17 00:00:00 2001 From: Sudip Bhandari Date: Thu, 5 Mar 2020 20:10:43 +0530 Subject: [PATCH 3/3] docs: added central() to build.gradle --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cc1111e963..3440e88f52 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ If you are using Gradle, add this to your dependencies ```Groovy repositories { google() + central() //other repositories }