I have an eclipse PRODUCT that has plugins and fragments:
Plugin A (PRODUCT MAIN Plugin)
Exported Plugins (eclipse DROPINS folder):
Plugin B (Dependency of Plugin A)
Fragment A (HOST=Plugin B) - UNCOMPRESSED=resources
Fragment B (HOST=Plugin B)
Problem: PRODUCT dependencies gives error, because Fragment A IS NOT recognized! It must be COMPRESSED in JAR format to be recognized!
I don't really understand this, because, if Plugin B is the PRODUCT MAIN plugin, any UNCOMPRESSED fragments are recognized:
Plugin B (PRODUCT MAIN Plugin)
Fragment A (HOST=Plugin B) - UNCOMPRESSED=resources
Fragment B (HOST=Plugin B)
PRODUCT has no errors and exports fine, as expected!
So why can't Plugin B be used as a dependency of another plugin?
Any solutions?