Description
using
publishing {
publications {
def commitref = "unknown"
if (project.hasProperty("commitref")) {
commitref = project.commitref
}
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
....
}
}
}
no longer works, specifically the part project.shadow.component(publication) - are there alternatives to it? How should it be done with the new 9.x release? Thanks a lot