Kotlin API reference
Placeholder
Dokka (Kotlin documentation generator) is not yet configured in the backend build. This page will be populated when the Dokka plugin is added to backend/platform/build.gradle.kts.
To enable:
- Add to
build.gradle.kts:id("org.jetbrains.dokka") version "2.0.0" - Run:
./gradlew dokkaHtml - Output will be generated to this directory
Setup instructions
// backend/platform/build.gradle.kts
plugins {
id("org.jetbrains.dokka") version "2.0.0"
}
tasks.dokkaHtml {
outputDirectory.set(layout.buildDirectory.dir("dokka"))
}
Key packages
When generated, the reference will cover:
| Package | Purpose |
|---|---|
com.aucert.platform.domain.generation | L1: Test generation |
com.aucert.platform.domain.execution | L2: Test execution |
com.aucert.platform.domain.analysis | L3: Result analysis |
com.aucert.platform.domain.pipeline | Pipeline orchestration |
com.aucert.platform.knowledgegraph | Knowledge Graph engine |
com.aucert.platform.persistence | Database access layer |
com.aucert.platform.api | REST API routes |