File tree Expand file tree Collapse file tree
main/kotlin/sk/ainet/tools/docgen Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,20 +35,15 @@ tasks.register("generateOperatorDocs") {
3535
3636 // Configure inputs for incremental builds
3737 inputs.files(" skainet-lang/skainet-lang-core/build/generated/ksp/metadata/commonMain/resources/operators.json" )
38- inputs.files(" tools/docgen/src/main/kotlin" )
39-
4038 // Configure outputs for incremental builds
4139 outputs.dir(" docs/modules/operators/_generated_" )
4240 outputs.cacheIf { true }
4341
4442 // Depend on KSP processing
4543 dependsOn(" :skainet-lang:skainet-lang-core:kspCommonMainKotlinMetadata" )
4644
47- // Depend on DocGen application
48- dependsOn(" :tools:docgen:run" )
49-
50- // Final step: process with AsciiDoctor
51- finalizedBy(" :tools:docgen:asciidoctor" )
45+ // Run built-in documentation generation task (provided by sk.ainet.documentation plugin)
46+ dependsOn(" generateDocs" )
5247
5348 doLast {
5449 println (" Operator documentation generation completed" )
Original file line number Diff line number Diff line change @@ -20,4 +20,3 @@ include("skainet-lang:skainet-lang-models")
2020include(" skainet-lang:skainet-lang-ksp-annotations" )
2121include(" skainet-lang:skainet-lang-ksp-processor" )
2222include(" skainet-lang:skainet-lang-export-ops" )
23- include(" tools:docgen" )
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments