Use Gradle dependency dynamic versioning (#1612)

* Use Gradle dependency dynamic versioning

Use dynamic versioning for Gradle dependencies when possible.
Please refer to go/dr-dependency-upgrade for more information about the
automation plan.

This PR calls out all dependencies that must be pinned to specific
versions for various reasons. The remaining ones are converted to
open-ended version ranges ("[version_str,)").
This commit is contained in:
Weimin Yu 2022-05-02 14:10:52 -04:00 committed by GitHub
parent fa135dcd85
commit 8e8911870c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
159 changed files with 14185 additions and 14070 deletions

View file

@ -94,7 +94,7 @@ class SchemaTest {
// flyway.migrate() returns the number of newly pushed scripts. This is a variable
// number as our schema evolves.
assertThat(flyway.migrate()).isGreaterThan(0);
assertThat(flyway.migrate().migrations).isNotEmpty();
flyway.validate();
ExecResult execResult =