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
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