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 -----------------------