Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ public abstract class EMFPlugin extends DelegatingResourceLocator implements Res
boolean result = false;
try
{
// With this we make sure, that we are really in a proper Eclipse Environment with everything we need.
// Some supplements pretend that the Platform is running, but don't provide a ExtensionRegistry.
FrameworkUtil.getBundle(EMFPlugin.class).loadClass("org.eclipse.core.runtime.IRegistryChangeListener");
result = Platform.isRunning();
}
catch (Throwable exception)
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.eclipse.emf.ecore/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.emf.ecore;singleton:=true
Bundle-Version: 2.38.0.qualifier
Bundle-Version: 2.39.0.qualifier
Bundle-ClassPath: .
Bundle-Activator: org.eclipse.emf.ecore.plugin.EcorePlugin$Implementation$Activator
Bundle-Vendor: %providerName
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.eclipse.emf.ecore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>org.eclipse.emf</groupId>
<artifactId>org.eclipse.emf.ecore</artifactId>
<version>2.38.0-SNAPSHOT</version>
<version>2.39.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

</project>
Loading