-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Harden bundle constraints between Xtext bundles (#2892)
* Harden constraints between Xtext bundles Since we don't do any semantic versioning in Xtext, it's safest to assume that all bundles always require the latest version of their peers. * Export all packages as versioned packages This should allow clients to use import-package instead of require-bundle for their Xtext dependencies * Bump bogus version number of xtext.logging fragment * Fixes to MergableManifest, added Java-based update script Signed-off-by: Sebastian Zarnekow <sebastian.zarnekow@gmail.com>
- Loading branch information
Showing
101 changed files
with
2,437 additions
and
2,277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: %pluginName | ||
Bundle-Vendor: %providerName | ||
Bundle-Version: 2.34.0.qualifier | ||
Bundle-Localization: plugin | ||
Bundle-SymbolicName: org.eclipse.xtend.ide.common | ||
Bundle-ActivationPolicy: lazy | ||
Require-Bundle: org.eclipse.xtend.core, | ||
org.eclipse.xtext.ide;visibility:=reexport, | ||
org.eclipse.xtext.xbase.ide, | ||
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)", | ||
org.eclipse.core.runtime;bundle-version="3.24.100";resolution:=optional | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Export-Package: org.eclipse.xtend.ide.common.contentassist.antlr;x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.contentassist.antlr.internal;x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.contentassist.javadoc;x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.editor.bracketmatching;x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.highlighting;x-friends:="org.eclipse.xtend.ide, | ||
org.eclipse.xtend.ide.tests", | ||
org.eclipse.xtend.ide.common.outline;x-friends:="org.eclipse.xtend.ide" | ||
Import-Package: org.apache.log4j;version="1.2.24" | ||
Automatic-Module-Name: org.eclipse.xtend.ide.common | ||
Eclipse-SourceReferences: eclipseSourceReferences | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: %pluginName | ||
Bundle-Vendor: %providerName | ||
Bundle-Version: 2.34.0.qualifier | ||
Bundle-Localization: plugin | ||
Bundle-SymbolicName: org.eclipse.xtend.ide.common | ||
Bundle-ActivationPolicy: lazy | ||
Require-Bundle: org.eclipse.xtend.core;bundle-version="2.34.0", | ||
org.eclipse.xtext.ide;bundle-version="2.34.0";visibility:=reexport, | ||
org.eclipse.xtext.xbase.ide;bundle-version="2.34.0", | ||
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)", | ||
org.eclipse.core.runtime;bundle-version="3.24.100";resolution:=optional | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Export-Package: org.eclipse.xtend.ide.common.contentassist.antlr;version="2.34.0";x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.contentassist.antlr.internal;version="2.34.0";x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.contentassist.javadoc;version="2.34.0";x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.editor.bracketmatching;version="2.34.0";x-friends:="org.eclipse.xtend.ide", | ||
org.eclipse.xtend.ide.common.highlighting;version="2.34.0";x-friends:="org.eclipse.xtend.ide, | ||
org.eclipse.xtend.ide.tests", | ||
org.eclipse.xtend.ide.common.outline;version="2.34.0";x-friends:="org.eclipse.xtend.ide" | ||
Import-Package: org.apache.log4j;version="1.2.24" | ||
Automatic-Module-Name: org.eclipse.xtend.ide.common | ||
Eclipse-SourceReferences: eclipseSourceReferences |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.