Re: Sub-projects and dependencies

2011-09-14 Thread Alex Boisvert
Hi Marc-André, The failing tests are probably due to your code depending on the current working directory being the same as before. Buildr does not change the cwd during test execution so you probably have to, e.g., load files through the classpath instead, or adjust your code accordingly. Other

Sub-projects and dependencies

2011-09-13 Thread Marc-André Laverdière
Hello everyone, I'm breaking one of my projects into subprojects and I'm getting some trouble. so I have core: crypto: core + own dependencies + core's dependencies io: core + crypto + their dependencies + own dependencies app: core + crypto+io + all their deps + own deps Now, some weird stuff ha