views:

44

answers:

3

According to the Red5 plugin for eclipse,

You must use the JEE distribution of Eclipse. The standard Java distribution will not work.

But what part exacty of the JEE distribution is needed. This way I can bring my current distribution of Eclipse to the level needed for Red5 without having to install an entirely new distribution just for Red5.

If you don't have an answer, but can point me to a way I can find it out for myself somehow what that dependancy could be, that would be good enough too.

+1  A: 

The installation processed described in this page is through an old pre-P2 area with eclipse3.3

alt text

You could try the same update site, with an basic eclipse3.5.1: the P2 provisioning mechanism should list for you all the missing components.

You can then compare the missing packages with the different eclipse distros and see for yourself exactly what part if the J2EE distro you actually need for the Red5 eclipse plugin.

VonC
+1  A: 

Every eclipse plugin has an (unique) identifier and a list with identifier it depends upon. If you unzip the jar file you will find a directory "META-INF" with a textfile "MANIFEST.MF". There will be an entry "Require-Bundle:" with a list of bundles (e.g. org.junit4;bundle-version="4.5.0"). This list tells you what you have to install for the plugin to work.

The id of the plugin is the entry "Bundle-SymbolicName:". With the ids on hand you should be able to determine what plugins exactly you have to install.

Arne
A: 

You mainly need the JST and WST plugins available from Eclipse themselves.

Mondain