Skip to content

Commit

Permalink
[GEF] Set explicit bundle version number dependencies
Browse files Browse the repository at this point in the history
- If an Archi plug-in has a dependency on these it should compile against our version and not the version from the Eclipse p2 repository
  • Loading branch information
Phillipus committed Aug 7, 2023
1 parent 278259b commit 8a9012a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion com.archimatetool.editor/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Bundle-Vendor: Archi
Bundle-Localization: plugin
Eclipse-BundleShape: dir
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.gef;visibility:=reexport,
org.eclipse.gef;bundle-version="[3.11.100,3.12.0)";visibility:=reexport,
org.eclipse.help.ui,
org.eclipse.ui,
org.eclipse.ui.browser,
Expand Down
4 changes: 2 additions & 2 deletions com.archimatetool.zest/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui,
org.eclipse.help.ui,
com.archimatetool.editor,
org.eclipse.zest.core,
org.eclipse.zest.layouts
org.eclipse.zest.core;bundle-version="[1.5.400,1.6.0)",
org.eclipse.zest.layouts;bundle-version="[1.1.400,1.2.0)"
Bundle-Activator: com.archimatetool.zest.ArchiZestPlugin
Export-Package: com.archimatetool.zest
Automatic-Module-Name: com.archimatetool.zest
4 changes: 2 additions & 2 deletions org.eclipse.gef/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Export-Package: org.eclipse.gef,
org.eclipse.gef.ui.stackview.icons,
org.eclipse.gef.ui.views.palette,
org.eclipse.gef.util
Require-Bundle: org.eclipse.draw2d;visibility:=reexport;bundle-version="[3.7.0,4.0.0)",
Require-Bundle: org.eclipse.draw2d;bundle-version="[3.10.200,3.11.0)";visibility:=reexport,
org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",
org.eclipse.ui.views;resolution:=optional;bundle-version="[3.2.0,4.0.0)",
org.eclipse.ui.views;bundle-version="[3.2.0,4.0.0)";resolution:=optional,
org.eclipse.ui.workbench;bundle-version="[3.2.0,4.0.0)",
org.eclipse.jface;bundle-version="[3.2.0,4.0.0)"
Bundle-ActivationPolicy: lazy
Expand Down
4 changes: 3 additions & 1 deletion org.eclipse.zest.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.eclipse.zest.core;singleton:=true
Require-Bundle: org.eclipse.zest.layouts,org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",org.eclipse.draw2d;visibility:=reexport
Require-Bundle: org.eclipse.zest.layouts;bundle-version="[1.1.400,1.2.0)",
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
org.eclipse.draw2d;bundle-version="[3.10.200,3.11.0)";visibility:=reexport
Bundle-Vendor: %Plugin.providerName
Bundle-RequiredExecutionEnvironment: JavaSE-17
Export-Package: org.eclipse.zest.core.viewers,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.zest.layouts/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Export-Package: org.eclipse.zest.layouts,
Require-Bundle: org.eclipse.swt;bundle-version="[3.4.0,4.0.0)";visibility:=reexport,
org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)";visibility:=reexport,
org.eclipse.jface;bundle-version="[3.2.0,4.0.0)",
org.eclipse.draw2d
org.eclipse.draw2d;bundle-version="[3.10.200,3.11.0)"
Bundle-RequiredExecutionEnvironment: JavaSE-17
Automatic-Module-Name: org.eclipse.zest.layouts
Bundle-ActivationPolicy: lazy

0 comments on commit 8a9012a

Please sign in to comment.