Skip to content

Commit

Permalink
Merge pull request #20760 from gsmet/flyway-8
Browse files Browse the repository at this point in the history
Upgrade Flyway to 8.0.1
  • Loading branch information
gsmet authored Oct 15, 2021
2 parents d22ad27 + 1d40f05 commit 1f3d58f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<awaitility.version>4.1.0</awaitility.version>
<jboss-logmanager.version>1.0.9</jboss-logmanager.version>
<jgit.version>5.13.0.202109080827-r</jgit.version>
<flyway.version>7.15.0</flyway.version>
<flyway.version>8.0.1</flyway.version>
<yasson.version>1.0.9</yasson.version>
<liquibase.version>4.5.0</liquibase.version>
<liquibase-mongodb.version>4.4.3</liquibase-mongodb.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void migrate(Context context) throws Exception {
}

@Override
public boolean isStateScript() {
public boolean isBaselineMigration() {
return false;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void migrate(Context context) throws Exception {
}

@Override
public boolean isStateScript() {
public boolean isBaselineMigration() {
return false;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ public boolean isOsgiFrameworkAvailable() {
return false;
}

@Substitute
public boolean isAndroidAvailable() {
return false;
}

@Substitute
public boolean isLog4J2Available() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Map<String, String> returnPlaceholders() {
@GET
@Path("create-schemas")
public boolean returnCreateSchema() {
return flyway.getConfiguration().getCreateSchemas();
return flyway.getConfiguration().isCreateSchemas();
}

@GET
Expand Down

0 comments on commit 1f3d58f

Please sign in to comment.