This is an automated email from the ASF dual-hosted git repository.
dimas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 3fbb78f5e chore(enhancement): make custom hidden tasks visible in
./gradlew tasks (#3176)
3fbb78f5e is described below
commit 3fbb78f5e662d0796a280c5b48a19862d29d3e5b
Author: Artur Rakhmatulin <[email protected]>
AuthorDate: Tue Dec 2 17:22:11 2025 +0000
chore(enhancement): make custom hidden tasks visible in ./gradlew tasks
(#3176)
---
build.gradle.kts | 3 +++
runtime/server/build.gradle.kts | 6 +++++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 359ff00b9..b26736e2e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -141,6 +141,7 @@ tasks.named<RatTask>("rat").configure {
}
tasks.register<Exec>("buildPythonClient") {
+ group = "build"
description = "Build the python client"
workingDir = project.projectDir
@@ -236,6 +237,8 @@ changelog {
}
tasks.register("showVersion") {
+ group = "application"
+ description = "Show the Polaris version"
actions.add {
logger.lifecycle(
"Polaris version is
${project.file("version.txt").readText(Charsets.UTF_8).trim()}"
diff --git a/runtime/server/build.gradle.kts b/runtime/server/build.gradle.kts
index dc2119983..2665649dc 100644
--- a/runtime/server/build.gradle.kts
+++ b/runtime/server/build.gradle.kts
@@ -72,7 +72,11 @@ quarkus {
)
}
-tasks.register("run") { dependsOn("quarkusRun") }
+tasks.register("run") {
+ group = "application"
+ description = "Runs the Apache Polaris server application"
+ dependsOn("quarkusRun")
+}
tasks.named<QuarkusRun>("quarkusRun") {
jvmArgs =