arabian_albert
arabian_albert

Reputation: 708

How to use (or integrate) maven pom.xml with an Eclipse Plugin project for dependency management

I'm developing a plugin for eclipse, but I'm having issue with including dependencies in my project.

Currently I am able to include hardcoded dependencies like specified here: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Fguide%2Ftools%2Feditors%2Fmanifest_editor%2Fdependencies.htm

However, I'd like to include a dependency of a project I've worked on, this way when I make changes to that dependency, I will get the new features in my plugin project.

I really like working with maven pom.xml files, how can I include this in my eclipse plugin project? Or is this even possible? I'd appreciate anyones thoughts or recommendations on this.

Upvotes: 1

Views: 616

Answers (1)

timtim17
timtim17

Reputation: 295

You can try to find a Maven plugin on the Eclipse Marketplace, like M2E. See this SO question.

Upvotes: 1

Related Questions