Skip to content

Commit

Permalink
chore: ensure that transitive deps have the latest version selected (#…
Browse files Browse the repository at this point in the history
…203)

* chore: ensure that transitive deps have the latest version selected

* typo

* typo
  • Loading branch information
igorbernstein2 committed Feb 25, 2020
1 parent 525886c commit 907e72b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions google-cloud-bigtable/pom.xml
Expand Up @@ -352,6 +352,7 @@
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<!-- Prevent users from mistyping a profile name -->
<execution>
<id>enforce-valid-profile</id>
<configuration>
Expand All @@ -363,6 +364,18 @@
<goal>enforce</goal>
</goals>
</execution>
<!-- Ensure that greatest version of each transitive dependency got selected -->
<execution>
<id>enforce-dependency-upper-bound</id>
<configuration>
<rules>
<requireUpperBoundDeps/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>

Expand Down

0 comments on commit 907e72b

Please sign in to comment.