From 286c1f991248dd73c78cf766f25bed19410b0466 Mon Sep 17 00:00:00 2001 From: unnsse Date: Wed, 7 May 2025 17:35:25 -0700 Subject: [PATCH] Register custom task as part of the build group. --- app/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 599c0a7..007e666 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -60,6 +60,8 @@ tasks.jar { } tasks.register("createShellScript") { + group = "build" + description = "Creates a Unix shell script to run the bounding-box as an executable (e.g. ./bounding-box)" outputFile.set(layout.buildDirectory.file("libs/bounding-box")) outputs.upToDateWhen { false } }