update dependencies

This commit is contained in:
2026-03-13 21:14:41 +06:00
parent 373906e156
commit f937a567f1
3 changed files with 19 additions and 9 deletions

View File

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