2011-07-24 56 views
1

如何轉換plugin.xml文件manifest.mf文件像一些標籤:如何將舊的「plugin.xml」轉換爲新的「manifest.mf」文件?

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

都似乎被忽略。

下面是一些在下一份文件中的信件,但很不完整的參考。

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

+0

另一個資源:http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fbundle_manifest.html – outmind

回答

2

公開賽在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 
相關問題