sdicola
sdicola

Reputation: 962

Maven and Eclipse plugins

I have a set of Eclipse plugins:

enter image description here

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

Answers (1)

snake_pp
snake_pp

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

Related Questions