-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specific migrations to be inactivated by name #4
Labels
enhancement
New feature or request
Milestone
Comments
d-ryan-ashcraft
added a commit
that referenced
this issue
Nov 17, 2023
d-ryan-ashcraft
added a commit
that referenced
this issue
Nov 17, 2023
Test Steps
|
d-ryan-ashcraft
added a commit
that referenced
this issue
Nov 17, 2023
…ption #4 ✨ support deactivating a migration by name; improve examp…
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Automatic migrations are useful in concept, at times it may be desirable for a project or specific module to disable one or more migrations. This could be for a number of reasons, such as an undesirable outcome, overlap with another migration, etc.
To support this concept, it would be nice to provide a list of migration names that will be made inactive to the plugin configuration. This level of granularity supports turning migrations off in a parent module that will impact many Maven modules, at an individual module, or both.
Notional solution that would deactivate any migration named
foo
orbar
in the classpath. If the names are not found, there is no impact.The text was updated successfully, but these errors were encountered: