wildabeast
wildabeast

Reputation: 1832

Can I separate portions of my plugin.xml file into multiple xml files for an Eclipse plugin?

I have created an eclipse plugin, with a plugin.xml file. I have created an extension to the org.eclipse.wst.common.snippets.SnippetContributions extension point. The xml contents of this extension point has gotten really big. Is there a way that I can move the contents of my snippets extension to a separate file? Something like this:

In plugin.xml:

<extension point="org.eclipse.wst.common.snippets.SnippetContributions" file="snippets.xml"></extenstion>

and in snippets.xml:

<category ....>
    <item..../item>
</category>...

Upvotes: 0

Views: 152

Answers (1)

Andrew Eisenberg
Andrew Eisenberg

Reputation: 28757

Unfortunately, this is not possible.

Upvotes: 0

Related Questions