Hi,

This seems so simple that I'm probably being dense, but I can't see what I'm
doing wrong.  I have a project defined as follows:

project (':foo') {

        dependencies {
                compile 'org.springframework:spring:[EMAIL PROTECTED]'

}

Later on in the same build.gradle, I have another project:

project (':bar') {
        
        dependencies {
                compile project(':foo')
        }

}

I'm currently getting an error compiling any classes that have Spring
dependencies in the 'bar' project.  Shouldn't project 'bar' be able to
compile classes with Spring dependencies based on the above?    Shouldn't
'bar' be inheriting the spring jar through the 'foo' lib dependency? 

This is all being done using the 0.2 release

-- 
View this message in context: 
http://www.nabble.com/Issue-w--transitive-dependencies-tp18330257p18330257.html
Sent from the gradle-user mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to