Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two projects in eclipse:

  1. framework: A general library used in several projects.
  2. client: A project that uses framework.

client is quite large, possibly larger than framework at this point. I am using client as sort of a test fixture for framework. I want to make a few changes in framework and test them in client. Currently, I have to do a full build of framework, install it into a maven repo, and then rebuild client.

Is there a way to just have client point to framework directly on my local disk? Any other hints for developing in such a situation (ie is the a better way)?

share|improve this question

3 Answers

up vote 3 down vote accepted

You can specify dependencies from the local disk using <systemPath> like so:

<dependency>
    <groupId>example.logging</groupId>
     <artifactId>commons-logging</artifactId>
     <version>1.0.0</version>
     <scope>system</scope>
     <systemPath>${project.basedir}/lib/commons-logging.jar</systemPath>
</dependency>

I'm not sure if you can point to a directory that has a pom in it, but at least you don't have to deploy it into maven.

share|improve this answer
I knew there was a way to do this. Thank you. – User1 Jun 30 '11 at 16:40

Running mvn install on Framework will build it and install it in your local Maven repository (that is, the Maven repository on your local disk). When you run your tests in Client, Maven will automatically use the version of Framework in your local repository.

share|improve this answer
This seems like a better way to manage local dependencies than systemPath as it allows different packages to reference specific builds if you're using snapshot versioning. – Pridkett Jan 7 at 17:25

The m2eclipse plugin is fairly intelligent about Maven dependencies. If you have the framework dependency open as a separate project in Eclipse, I think it should use its code for client rather than the version in your repository. You might need to tweak your project settings if you're already using m2eclipse and it doesn't do this.

share|improve this answer
Yes, you can resolve dependencies from workspace projects. – gary May 2 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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