kausaur
kausaur

Reputation: 28

Eclipse Plugin Development: Convert plugin project to maven project

I have developed an Eclipse plugin project. Now I need to convert it to a Maven Project so that the dependencies etc can be handled using pom.xml. Is there a way to convert the plugin project to a Maven project?

Upvotes: 0

Views: 2493

Answers (1)

xoned
xoned

Reputation: 2811

Right click on your project -> Configure -> Convert to Maven Project

you need eclipse m2e to do this

btw. if you dont know: if you want to use maven with eclipse plugins, you will need tycho too. see eclipse tycho

Upvotes: 1

Related Questions