Closed ddossot closed 10 years ago
it took me a while to find it: without Gemfile.lock things are working as expected. with the Gemfile.lock there are tons of warnings about duplicated declaration of dependencies. so all the test scope are duplicates.
a workaround would be rmvn clean initialize -P -gemfile_lock,gemfile
I see to fix those duplicates . .
Thanks Christian!
I just pushed a ruby-maven gem with a fix for this one. sorry it took a while . . .
This works great, thank you so much :+1:
With the following Gemfile ...
... the
activesupport-4.1.1
gem is correctly in thecompile
scope.If I uncomment
shoulda-matchers
from the:test
block, thenactivesupport-4.1.1
is moved out of thecompile
scope to thetest
scope. This is a problem because this dependency is needed at runtime.