RedMadRobot/gradle-infrastructure

publish: It is impossible to change component for android library publication

osipxd opened this issue · 0 comments

Currently component name for android library publication is hardcoded as "release". It would be great to provide the way to configure component name.

publishing {
publications.create<MavenPublication>(PUBLICATION_NAME) {
afterEvaluate {
from(components["release"])
}
}
}