1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-04 07:39:39 +00:00

update publishing way

This commit is contained in:
2025-05-31 17:04:51 +06:00
parent a9562cc8f9
commit ddb79c0d8d
4 changed files with 47 additions and 8 deletions

View File

@@ -15,3 +15,13 @@ allprojects {
}
}
}
tasks.register("getPublishableModules") {
doLast {
rootProject.subprojects.each { project ->
if (project.plugins.hasPlugin('maven-publish')) {
println(":${project.name}")
}
}
}
}