如何将旧的“plugin.xml”转换为新的“plugin.xml”到新的“manifest.mf”文件?

发布于 2024-11-26 04:31:16 字数 352 浏览 0 评论 0原文

如何将 plugin.xml 文件转换为 manifest.mf 文件,因为某些标签(例如:)

<runtime>
    <library name="aaa.jar">
        <export name="*"/>
    </library>
<runtime>

似乎被忽略。

这是下一个文档中的一些对应信息,但远非完整的参考。

http://www.eclipse.org/eclipse/platform-core/runtime/adoption.html

How to convert plugin.xml file to manifest.mf file as some tags like:

<runtime>
    <library name="aaa.jar">
        <export name="*"/>
    </library>
<runtime>

are seems to be ignored.

Here is some correspondence in the next document, but far from complete reference.

http://www.eclipse.org/eclipse/platform-core/runtime/adoption.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏佲洛 2024-12-03 04:31:16

在plugin.xml 编辑器中打开文件。在概述选项卡>插件内容部分应该有一个链接,“...,创建 OSGi 清单

OSGi 清单是一组描述捆绑包、依赖项的捆绑包或包以及该捆绑包导出的包。前任:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclipse UI Tests
Bundle-SymbolicName: org.eclipse.ui.tests; singleton:=true
Bundle-Version: 3.6.0.qualifier
Bundle-ClassPath: uitests.jar
Bundle-Activator: org.eclipse.core.internal.compatibility.PluginActivator
Bundle-Vendor: Eclipse.org
Require-Bundle: org.eclipse.core.runtime.compatibility,
 org.eclipse.core.resources,
 org.eclipse.core.expressions,
 org.eclipse.ui,
 ...
Eclipse-AutoStart: true
Export-Package: org.eclipse.ui.tests.api,
 org.eclipse.ui.tests.helpers,
 org.eclipse.ui.tests.menus
Bundle-RequiredExecutionEnvironment: J2SE-1.4

Open the file in the plugin.xml editor. On the Overview Tab>Plug-in Content section there should be a link, "..., create an OSGi manifest"

The OSGi manifest is a set of headers describing the bundle, the bundles or packages that are dependencies, and the packages this bundle exports. ex:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclipse UI Tests
Bundle-SymbolicName: org.eclipse.ui.tests; singleton:=true
Bundle-Version: 3.6.0.qualifier
Bundle-ClassPath: uitests.jar
Bundle-Activator: org.eclipse.core.internal.compatibility.PluginActivator
Bundle-Vendor: Eclipse.org
Require-Bundle: org.eclipse.core.runtime.compatibility,
 org.eclipse.core.resources,
 org.eclipse.core.expressions,
 org.eclipse.ui,
 ...
Eclipse-AutoStart: true
Export-Package: org.eclipse.ui.tests.api,
 org.eclipse.ui.tests.helpers,
 org.eclipse.ui.tests.menus
Bundle-RequiredExecutionEnvironment: J2SE-1.4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文