[Lift] Maven help!

2010-02-26 Thread Jeppe Nejsum Madsen
Hi, For the new logging code I need a setup that I can't really see how to achieve with Maven: 1) Both slf4j-log4j and logback-classic needs to be on the classpath when compiling 2) Only sf4j-log4j should be on the classpath when testing 3) None should be included in the generated pom

Re: [Lift] Maven help!

2010-02-26 Thread Josh Suereth
including something at compile-time and not test time is a rare thing for maven, which assumes tests also need dependencies used to compile. Of all the scopes you can specify for dependencies *all* of them end up on the testing classpath. (see

Re: [Lift] Maven help!

2010-02-26 Thread Jeppe Nejsum Madsen
Josh Suereth joshua.suer...@gmail.com writes: including something at compile-time and not test time is a rare thing for maven, which assumes tests also need dependencies used to compile. Of all the scopes you can specify for dependencies *all* of them end up on the testing classpath. (see