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'