Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » how to specify that my plugin only works with > eclipse 3.0
how to specify that my plugin only works with > eclipse 3.0 [message #141691] Thu, 09 October 2003 11:07 Go to next message
Akmal is currently offline AkmalFriend
Messages: 28
Registered: July 2009
Junior Member
thanks
Re: how to specify that my plugin only works with > eclipse 3.0 [message #141833 is a reply to message #141691] Thu, 09 October 2003 16:08 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: richkulp.NO--SPAM.us.ibm.com

If you have a feature.xml, the best way is:

<requires>
<import feature="org.eclipse.jdt" version="3.0.0"
match="compatible"/>
</requires>

This will make sure that jdt is included in the eclipse. If you don't
need java, then use "org.eclipse.platform" instead.

If you only have a plugin, and not a feature, then in your plugin do
instead:

<requires>
<import plugin="org.eclipse.platform" version="3.0.0"
match="compatible" />
</requires>

or "org.eclispe.jdt" if you want the java.

Rich
Re: how to specify that my plugin only works with > eclipse 3.0 [message #141863 is a reply to message #141833] Thu, 09 October 2003 16:21 Go to previous message
Akmal is currently offline AkmalFriend
Messages: 28
Registered: July 2009
Junior Member
thanks ;-)

"Richard L. Kulp" <richkulp@NO--SPAM.us.ibm.com> schrieb im Newsbeitrag
news:bm411i$mqd$1@eclipse.org...
> If you have a feature.xml, the best way is:
>
> <requires>
> <import feature="org.eclipse.jdt" version="3.0.0"
> match="compatible"/>
> </requires>
>
> This will make sure that jdt is included in the eclipse. If you don't
> need java, then use "org.eclipse.platform" instead.
>
> If you only have a plugin, and not a feature, then in your plugin do
> instead:
>
> <requires>
> <import plugin="org.eclipse.platform" version="3.0.0"
> match="compatible" />
> </requires>
>
> or "org.eclispe.jdt" if you want the java.
>
> Rich
>
Previous Topic:Custom Javadoc tags not exported
Next Topic:Code Snippet for Selecting Java Interface in Project
Goto Forum:
  


Current Time: Thu Apr 25 16:57:34 GMT 2024

Powered by FUDForum. Page generated in 0.02816 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top