I am using configuration injection for gradle and have something like this
subprojects {
dependencies {
compile fileTree(dir: 'play-1.2.4/framework/lib', include: '*.jar')
compile fileTree(dir: 'webserver/play-1.2.4/framework', include: '*.jar')
}
}
My directory structure is
project
subproject1
subrpoject2
I run the command
gradle subproject1:dependencies and it is EMPTY :( :(
soooo, what should the relative file paths be so that this works????
thanks, Dean