Reputation: 962
I have a set of Eclipse plugins:
that I'd like to build using maven.
My question is: since there is no one single entry point, how do I use maven to organise the building?
Upvotes: 1
Views: 54
Reputation: 26
you should create a project that have all modules( your projects ) and then build this project that actually will build all of your plugins.
For more info please refer to creating a maven project on eclipse and
create a multimodule project with maven
Upvotes: 1