I am transitioning from using Buckminster to build an Eclipse product to Tycho. I've mavenized my plug-ins and features and have a question:
I created a parent feature with a POM that references my features and plugins. I don't know if I am doing this correctly, but I find that I need to add all features and plugins as modules. So if I have pluginA
, pluginB
and feature1
that includes pluginA
and pluginB
, I add all three to parent POM. This is a bit strange to me, because in Buckminster I had to reference only feature1
and it would get its dependencies based on the feature.xml
file.
I am doing something wrong in my Tycho builds, or is this how it's suppose to work?