Kotlin Extension for bld https://github.com/rife2/bld-kotlin
Find a file
2023-11-05 04:03:12 -08:00
.github/workflows Added tests 2023-11-04 02:00:42 -07:00
.idea Added support for Collections as arguments 2023-11-03 23:10:31 -07:00
.vscode Initial commit 2023-11-03 21:31:09 -07:00
config Minor cleanup 2023-11-03 22:08:45 -07:00
examples Started implementing the Dokka operation 2023-11-05 04:03:12 -08:00
lib/bld Minor cleanup 2023-11-03 22:08:45 -07:00
src Started implementing the Dokka operation 2023-11-05 04:03:12 -08:00
.gitignore Fixed dependencies for testing 2023-11-04 02:07:00 -07:00
bld Initial commit 2023-11-03 21:31:09 -07:00
bld.bat Initial commit 2023-11-03 21:31:09 -07:00
LICENSE.txt Initial commit 2023-11-03 21:31:09 -07:00
README.md Added source locations 2023-11-04 03:10:13 -07:00

Kotlin Extension for bld

License Java Kotlin bld Release Snapshot GitHub CI

To install, please refer to the extensions documentation.

To compile the Kotlin source code from the current project located in src/main/kotlin and src/test/kotlin:

@BuildCommand(summary = "Compile the Kotlin project")
public void compile() throws IOException {
    new CompileKotlinOperation()
            .fromProject(this)
            .compileOptions("-verbose")
            .execute();
}
./bld compile

Please check the Compile Operation documentation for all available configuration options.