Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 20386

Using properties from subproject in "subprojects" : Could not find property 'something' on project ':subproject'

$
0
0

I think you can initialize the property in your main proj-config and then use it in sub-project…

configuration(subprojects){
     myProp = property('my.common.version')
}

and then in sub-proj. you should be able to access it


Viewing all articles
Browse latest Browse all 20386