Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an old project with files layout still in "src/" and jars in "lib/". I defined the layout to point to src.

compile.with(Dir[_("lib/*.jar")])

But when I run buildr build, it still stays package <name> does not exist. How can I resolve this? Thank you.

share|improve this question

1 Answer

up vote 2 down vote accepted

You might want to debug this for yourself by adding a line:

puts Dir[_("lib/*.jar")]

You might want to use Dir[_("lib/*/.jar")] in case there are jars in subdirectories.

share|improve this answer
Thanks, it works now :) – daole Oct 5 '12 at 7:14

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.