Skip to content

Commit 10bc8bb

Browse files
authored
Temporarily remove Resolving Dependencies section (#2372)
Put it back once BOM is moved to a separate module.
1 parent be00787 commit 10bc8bb

1 file changed

Lines changed: 0 additions & 34 deletions

File tree

README.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -63,40 +63,6 @@ libraryDependencies += "com.google.cloud" % "google-cloud" % "0.22.0-alpha"
6363

6464
For running on Google App Engine, see [more instructions here](./APPENGINE.md).
6565

66-
Resolving dependency conflicts
67-
----------
68-
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.
69-
70-
If you are using Maven, add this to your pom.xml file
71-
```xml
72-
<dependencyManagement>
73-
<dependencies>
74-
<dependency>
75-
<groupId>com.google.cloud</groupId>
76-
<artifactId>google-cloud-pom</artifactId>
77-
<version>0.22.0-alpha</version>
78-
<type>pom</type>
79-
<scope>import</scope>
80-
</dependency>
81-
</dependencies>
82-
</dependencyManagement>
83-
```
84-
If you are using Gradle, add the following plugin at the beginning of your build.gradle file
85-
86-
```Groovy
87-
plugins {
88-
id "io.spring.dependency-management" version "1.0.3.RELEASE"
89-
}
90-
```
91-
Then add the following in your build.gradle file
92-
```Groovy
93-
dependencyManagement {
94-
imports {
95-
mavenBom 'com.google.cloud:google-cloud-pom:0.22.0-alpha'
96-
}
97-
}
98-
```
99-
10066
Specifying a Project ID
10167
-----------------------
10268

0 commit comments

Comments
 (0)