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 an in-development library project (module by IntelliJ definition) that i want to reference from other projects. How would i go about to reference that project in other projects ?

share|improve this question
Very similar to a question I asked a couple of years ago when I was learning Maven: stackoverflow.com/questions/2511908/… – Daniel Pryden Sep 16 '12 at 4:36

3 Answers

you can use whether Dependency or module tags in pom.xml of your project. Depends on what you trying to do.

<dependency>
        <groupId>com.mysubpro</groupId>
        <artifactId>myproject</artifactId>
        <version>1.0-SNAPSHOT</version>
</dependency>  

Or

<modules>
    <module>myproject</module>
</modules>
share|improve this answer

You have to use mvn install goal. This will install your library to your local repository. Link to Maven Install Plugin. Once it is done you can have a dependency to it in your other projects.

share|improve this answer

Not sure how much you surfed but this is very basics of Maven. Please check this example. Its a step by step example on one project being dependent on other.

share|improve this answer

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.