File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/org/eclipse/m2e/core/internal/repository Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Manifest-Version: 1.0
22Bundle-ManifestVersion : 2
33Bundle-Name : %Bundle-Name
44Bundle-SymbolicName : org.eclipse.m2e.core;singleton:=true
5- Bundle-Version : 2.7.4 .qualifier
5+ Bundle-Version : 2.7.500 .qualifier
66Bundle-Activator : org.eclipse.m2e.core.internal.MavenPluginActivator
77Bundle-Vendor : %Bundle-Vendor
88Bundle-Localization : plugin
Original file line number Diff line number Diff line change 2121import org .eclipse .core .runtime .Status ;
2222
2323import org .eclipse .m2e .core .internal .Messages ;
24+ import org .eclipse .m2e .core .internal .MavenPluginActivator ;
2425import org .eclipse .m2e .core .internal .jobs .IBackgroundProcessingQueue ;
2526import org .eclipse .m2e .core .internal .jobs .MavenJob ;
2627
@@ -50,6 +51,11 @@ public IStatus run(IProgressMonitor monitor) {
5051 registry .updateRegistry (monitor );
5152 } catch (CoreException ex ) {
5253 return ex .getStatus ();
54+ } catch (IllegalStateException ex ) {
55+ // Ignore failures on shutdown https://github.com/eclipse-m2e/m2e-core/issues/2025
56+ if (MavenPluginActivator .getDefault () != null ) {
57+ throw ex ;
58+ }
5359 }
5460 return Status .OK_STATUS ;
5561 }
Original file line number Diff line number Diff line change 22<feature
33 id =" org.eclipse.m2e.feature"
44 label =" %featureName"
5- version =" 2.9.1 .qualifier"
5+ version =" 2.9.200 .qualifier"
66 provider-name =" %providerName"
77 plugin =" org.eclipse.m2e.core"
88 license-feature =" org.eclipse.license"
You can’t perform that action at this time.
0 commit comments