From a547bc4342464d8c19c4888ddbdac44a54942038 Mon Sep 17 00:00:00 2001 From: kami Date: Mon, 22 Jun 2026 09:47:15 +0000 Subject: [PATCH] chore: remove dead apps/worker and apps/desktop stub modules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both were scaffolding placeholders from Epic 14 (2c459da) that were never built out: each was just an `application` build.gradle (clikt only, no internal deps) and a one-line `println` Main.kt. Nothing depended on them — no project(...) reference anywhere, only the settings.gradle includes, and no script/doc/CI launched their MainKt — so they only cost build time configuring two inert modules. Delete both module dirs and drop their include lines from settings.gradle. `./gradlew projects` now lists only :apps:cli and :apps:server (configures clean). Co-Authored-By: Claude Opus 4.8 --- apps/desktop/build.gradle | 14 -------------- .../main/kotlin/com/correx/apps/desktop/Main.kt | 5 ----- apps/worker/build.gradle | 14 -------------- .../src/main/kotlin/com/correx/apps/worker/Main.kt | 5 ----- settings.gradle | 2 -- 5 files changed, 40 deletions(-) delete mode 100644 apps/desktop/build.gradle delete mode 100644 apps/desktop/src/main/kotlin/com/correx/apps/desktop/Main.kt delete mode 100644 apps/worker/build.gradle delete mode 100644 apps/worker/src/main/kotlin/com/correx/apps/worker/Main.kt diff --git a/apps/desktop/build.gradle b/apps/desktop/build.gradle deleted file mode 100644 index 2413f3cd..00000000 --- a/apps/desktop/build.gradle +++ /dev/null @@ -1,14 +0,0 @@ -plugins { - id 'org.jetbrains.kotlin.jvm' - id 'application' -} - -application { - mainClass = 'com.correx.apps.desktop.MainKt' -} - -dependencies { - implementation "com.github.ajalt.clikt:clikt:5.0.1" -} - -tasks.named("koverVerify").configure { enabled = false } diff --git a/apps/desktop/src/main/kotlin/com/correx/apps/desktop/Main.kt b/apps/desktop/src/main/kotlin/com/correx/apps/desktop/Main.kt deleted file mode 100644 index fe456df0..00000000 --- a/apps/desktop/src/main/kotlin/com/correx/apps/desktop/Main.kt +++ /dev/null @@ -1,5 +0,0 @@ -package com.correx.apps.desktop - -fun main() { - println("correx :: apps/desktop") -} diff --git a/apps/worker/build.gradle b/apps/worker/build.gradle deleted file mode 100644 index 9def4d38..00000000 --- a/apps/worker/build.gradle +++ /dev/null @@ -1,14 +0,0 @@ -plugins { - id 'org.jetbrains.kotlin.jvm' - id 'application' -} - -application { - mainClass = 'com.correx.apps.worker.MainKt' -} - -dependencies { - implementation "com.github.ajalt.clikt:clikt:5.0.1" -} - -tasks.named("koverVerify").configure { enabled = false } diff --git a/apps/worker/src/main/kotlin/com/correx/apps/worker/Main.kt b/apps/worker/src/main/kotlin/com/correx/apps/worker/Main.kt deleted file mode 100644 index 55fa81ad..00000000 --- a/apps/worker/src/main/kotlin/com/correx/apps/worker/Main.kt +++ /dev/null @@ -1,5 +0,0 @@ -package com.correx.apps.worker - -fun main() { - println("correx :: apps/worker") -} diff --git a/settings.gradle b/settings.gradle index b98ee139..6fabc8fd 100644 --- a/settings.gradle +++ b/settings.gradle @@ -9,8 +9,6 @@ rootProject.name = 'correx' include ':apps:cli' include ':apps:server' -include ':apps:worker' -include ':apps:desktop' include ':core:kernel' include ':core:events'