├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main └── kotlin └── com └── dyescape └── ksp └── maven ├── KotlinSymbolProcessingMavenPluginExtension.kt └── options.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/kotlin/com/dyescape/ksp/maven/KotlinSymbolProcessingMavenPluginExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/src/main/kotlin/com/dyescape/ksp/maven/KotlinSymbolProcessingMavenPluginExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/dyescape/ksp/maven/options.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyescape/kotlin-maven-symbol-processing/HEAD/src/main/kotlin/com/dyescape/ksp/maven/options.kt --------------------------------------------------------------------------------