We would like to use Flyway for database migrations. In addition to our migration scripts, we have a need to execute some scripts that should not be treated as migrations (and do not need to be tracked in the schema_version table). An example would be to execute scripts that contain configuration data or test data that is only relevant in development environments. We would still like to use the flyway-maven-plugin to execute these SQL scripts rather than a different maven plugin that runs before/after my flyway-maven-plugin.
A similar question was asked about pre and post migration scripts for flyway. If this feature was implemented, it could work for our needs as well.