a547bc4342
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 <noreply@anthropic.com>
51 lines
1.2 KiB
Groovy
51 lines
1.2 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'correx'
|
|
|
|
include ':apps:cli'
|
|
include ':apps:server'
|
|
|
|
include ':core:kernel'
|
|
include ':core:events'
|
|
include ':core:transitions'
|
|
include ':core:context'
|
|
include ':core:inference'
|
|
include ':core:artifacts'
|
|
include ':core:artifacts-store'
|
|
include ':core:validation'
|
|
include ':core:approvals'
|
|
include ':core:tools'
|
|
include ':core:toolintent'
|
|
include ':core:router'
|
|
include ':core:sessions'
|
|
include ':core:config'
|
|
include ':core:risk'
|
|
include ':core:journal'
|
|
include ':core:critique'
|
|
|
|
include ':infrastructure:persistence'
|
|
include ':infrastructure:inference'
|
|
include ':infrastructure:inference:commons'
|
|
include ':infrastructure:inference:llama_cpp'
|
|
include ':infrastructure:router'
|
|
include ':infrastructure:router:turbovec'
|
|
include ':infrastructure:tools'
|
|
include ':infrastructure:tools:filesystem'
|
|
include ':infrastructure:workflow'
|
|
include ':infrastructure:artifacts-cas'
|
|
|
|
include ':testing:replay'
|
|
include ':testing:contracts'
|
|
include ':testing:kernel'
|
|
include ':testing:integration'
|
|
include ':testing:fixtures'
|
|
include ':testing:projections'
|
|
include ':testing:transitions'
|
|
include ':testing:approvals'
|
|
include ':testing:deterministic'
|