I have an existing eclipse project with standard dependencies in the classpath. I need to add a new dependency through maven but the rest of the dependencies need to stay there as jars bundled with the project.

I am using m2e, if I right click on the project --> maven --> enable maven, a pom file is created. At this stage I can add my new dependency through the pom file but all the existing dependencies seem to be gone from the classpath.

Hence the question: Is there a way to create a hybrid project that has both standard dependencies and maven dependencies?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You could add your legacy dependencies by using the scope "system" (and the tag "systemPath") ?

See http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html.

link|improve this answer
that's just what I was looking for - thanks! – JohnIdol Feb 19 at 14:56
You're welcome ;). – Yanflea Feb 19 at 19:12
feedback

I don't think you should even attempt to create such a thing, and I don't know why you would want to.

If you want to use Maven, then you should define all your dependencies in your pom so that a maven build will actually work. If all your dependencies aren't defined, how do you expect maven to build your project?

You need to decide which means of dependency resolution you want to use instead of trying to mix two together.

link|improve this answer
I appreciate it's not ideal, my question was: can it be done? :) – JohnIdol Feb 13 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.