From be10b430bb6c92f0e789bf5791b1d30db2666d5b Mon Sep 17 00:00:00 2001 From: Vadym Matsishevskyi <25311427+vam-google@users.noreply.github.com> Date: Wed, 23 Aug 2017 10:57:34 -0700 Subject: [PATCH] Temporarily remove Resolving Dependencies section Put it back once BOM is moved to a separate module. --- README.md | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/README.md b/README.md index e6ae0506c029..802150157c0c 100644 --- a/README.md +++ b/README.md @@ -63,40 +63,6 @@ libraryDependencies += "com.google.cloud" % "google-cloud" % "0.22.0-alpha" For running on Google App Engine, see [more instructions here](./APPENGINE.md). -Resolving dependency conflicts ----------- -Optionally, if you encounter dependency conflicts, you may specify google-cloud-pom as a ["bill of materials"](https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Importing_Dependencies) to ensure that internal dependencies of google-cloud and your project are in sync. - -If you are using Maven, add this to your pom.xml file -```xml - - - - com.google.cloud - google-cloud-pom - 0.22.0-alpha - pom - import - - - -``` -If you are using Gradle, add the following plugin at the beginning of your build.gradle file - -```Groovy -plugins { - id "io.spring.dependency-management" version "1.0.3.RELEASE" -} -``` -Then add the following in your build.gradle file -```Groovy -dependencyManagement { - imports { - mavenBom 'com.google.cloud:google-cloud-pom:0.22.0-alpha' - } -} -``` - Specifying a Project ID -----------------------