cannot get transitive dependencies working

2011-04-05 Thread Khai Do
Hello, Can anybody tell me if transitive dependencies work when using npanday? I have a .NET multi module project and have the following simple scenario where transitive dependency isn't working. I'm using java 1.6, maven 2.2.1, and npanday-1.3-incubating, I have 3 projects: projectA,

RE: cannot get transitive dependencies working

2011-04-05 Thread Khai Do
The whole point of maven's transitive dependency feature is to pull in all indirect dependencies for build, test, and runtime. At least this is how it works with maven java projects. You should not have to supply concrete references to every library that a project depends on, it would be a

Re: cannot get transitive dependencies working

2011-04-05 Thread Brett Porter
Maven originally didn't allow transitive, compile time dependencies. Unfortunately, there are certain circumstances under which Java requires them at compile time and I reluctantly changed it to avoid confusion. The dependency:analyze goal now warns you if you don't specify them directly. .NET

Re: cannot get transitive dependencies working

2011-04-05 Thread Lars Corneliussen
Hi, A transitive dependency is a dependeny of your dependency. If you reference a class of that transitive dependency, it is not a dependency of your dependency anymore. It's now also your direct dependency and hence SHOULD be declared in the POM. _ Lars Am 05.04.11 18:32, schrieb Brett