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.

For a java/scala project I have some dependencies that are not in a remote repository, but somewhere else in my filesystem. I have then two options, which lead to questions:

  1. I can add a lib/ directory in my project folder. How can I tell buildr to add the content to the class path ?

  2. I can use the builtin dependencies management system. Can I indicate a filesystem repository path instead of an http one ?

Thanks

share|improve this question

2 Answers

up vote 8 down vote accepted

I found the solution I was looking for in buildr mailing list. The compile.with() method accepts an array of file names (with the path prefix of course). So if the dependencies are jars in a directory called lib you can just call:

compile.with Dir['lib/*.jar'] 

in the buildfile. Hope that will help other buildr adepts.

share|improve this answer
Couldn't have said it better myself! – Daniel Spiewak Dec 1 '09 at 16:57
1  
'lib/**/*.jar' will get you subfolder of lib as well – Sebastian May 10 '10 at 11:18
1  
Thanks @paradigmatic and @Sebastian! Just what I needed. Has anyone found good "recipes" for buildr? The manual is nice, but I find it short on real examples. Although, to be fair, most things are very simple in buildr so you don't really need a lot of tweaking. – Dave Mar 17 '11 at 17:10

Regarding your second question:

I can use the builtin dependencies management system. Can I indicate a filesystem repository path instead of an http one ?

Yes, just like maven2, you can use the file:/// protocol to locate a "remote" repository on the file system.

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.