We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
During my regular work, I need to run generate-sources when I change branches....
generate-sources
When moving from master to a work branch, all is good.
But, when I move back, from work branch to master, partials kick in and mvn generate-sources don't do anything. And that seems to be right.
mvn generate-sources
What I would like to do, is to add a configuration to disable partials for some goals/phases
goals/phases
let's say I add the following configuration:
<skipForPhases> <phase>generate-sources</phase> </skipForPhases>
Running mvn clean install would behave as is now. Running mvn generate-sources would behave like mvn generate-sources -Dpartial.enabled=false
mvn clean install
mvn generate-sources -Dpartial.enabled=false
If that is something interesting to the project, I would be willing to do the required changes.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
During my regular work, I need to run
generate-sources
when I change branches....When moving from master to a work branch, all is good.
But, when I move back, from work branch to master, partials kick in and
mvn generate-sources
don't do anything. And that seems to be right.What I would like to do, is to add a configuration to disable partials for some
goals/phases
let's say I add the following configuration:
Running
mvn clean install
would behave as is now.Running
mvn generate-sources
would behave likemvn generate-sources -Dpartial.enabled=false
If that is something interesting to the project, I would be willing to do the required changes.
The text was updated successfully, but these errors were encountered: