Skip to content
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

Add java.configuration.maven.defaultMojoExecutionAction #2426

Merged
merged 1 commit into from
Feb 3, 2023

Conversation

Comment on lines 139 to 157
for (IProject project : ProjectUtils.getAllProjects()) {
if (ProjectUtils.isMavenProject(project)) {
JavaLanguageServerPlugin.getProjectsManager().updateProject(project, true);
}
}
} catch (CoreException e) {
JavaLanguageServerPlugin.logException("failed to set not covered Maven plugin execution severity", e);
}
}
String newMavenDefaultMavenExecutionAction = preferences.getMavenDefaultMojoExecutionAction();
String oldMavenDefaultMavenExecutionAction = getMavenConfiguration().getDefaultMojoExecutionAction() == null ? null : getMavenConfiguration().getDefaultMojoExecutionAction().name();
if (!Objects.equals(newMavenDefaultMavenExecutionAction, oldMavenDefaultMavenExecutionAction)) {
PluginExecutionAction action = PluginExecutionAction.valueOf(newMavenDefaultMavenExecutionAction == null ? "ignore" : newMavenDefaultMavenExecutionAction);
getMavenConfiguration().setDefaultMojoExecutionAction(action);
for (IProject project : ProjectUtils.getAllProjects()) {
if (ProjectUtils.isMavenProject(project)) {
JavaLanguageServerPlugin.getProjectsManager().updateProject(project, true);
}
}
Copy link
Contributor

@fbricon fbricon Jan 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please don't update the projects twice. First determine if severity or action changed, then trigger the update of maven projects

Copy link
Contributor

@fbricon fbricon Jan 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really wish the preference manager was decoupled from Maven (or other build tools).
Maybe we need a BuildPreferences interface and delegate build tool specific operations to specific implementations. But that's for another PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually a simple preference listener mechanism should help easily decouple all that

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please don't update the projects twice. First determine if severity or action changed, then trigger the update of maven projects

Fixed.

I really wish the preference manager was decoupled from Maven (or other build tools).
Maybe we need a BuildPreferences interface and delegate build tool specific operations to specific implementations. But that's for another PR.

Could you, please, create a new issue?

Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
@snjeza
Copy link
Contributor Author

snjeza commented Jan 31, 2023

@fbricon I have updated the PR.

@rgrunber
Copy link
Contributor

rgrunber commented Feb 2, 2023

Change seems to work well. I just noticed that by modifying : java.configuration.maven.notCoveredPluginExecutionSeverity & java.configuration.maven.defaultMojoExecutionAction, different diagnostics can end up published. It seems like we probably don't have control over this since it's happening in m2e.

For example, if I set defaultMojoExecutionAction to ignore & notCoveredPluginExecutionSeverity to ignore I get "Plugin execution not covered by lifecycle configuration: com.diffplug.spotless:spotless-maven-plugin:2.29.0:apply (execution: default, phase: compile)" as an info. If I set defaultMojoExecutionAction to warn, it disappears. Let me know if there's anything we can do or we just have to accept what m2e spits out.

@snjeza
Copy link
Contributor Author

snjeza commented Feb 2, 2023

For example, if I set defaultMojoExecutionAction to ignore & notCoveredPluginExecutionSeverity to ignore I get "Plugin execution not covered by lifecycle configuration: com.diffplug.spotless:spotless-maven-plugin:2.29.0:apply (execution: default, phase: compile)" as an info. If I set defaultMojoExecutionAction to warn, it disappears. Let me know if there's anything we can do or we just have to accept what m2e spits out.

@rgrunber You can create a new issue at m2e

Copy link
Contributor

@rgrunber rgrunber left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feel free to merge when ready.

@snjeza snjeza merged commit c56bd15 into eclipse-jdtls:master Feb 3, 2023
@snjeza snjeza deleted the issue-2899 branch February 3, 2023 19:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants