Kotlin Extension for bld https://github.com/rife2/bld-kotlin
Find a file
2024-01-31 12:25:27 -08:00
.github/workflows Removed cd to previous dir 2024-01-31 00:30:28 -08:00
.idea Bumped bld to 1.8.0 2024-01-31 00:11:46 -08:00
.vscode Bumped bld to 1.8.0 2024-01-31 00:11:46 -08:00
config Minor cleanup 2023-11-03 22:08:45 -07:00
examples Version 0.9.0 2024-01-31 00:17:29 -08:00
lib/bld Version 0.9.0 2024-01-31 00:17:29 -08:00
src Version 0.9.0 2024-01-31 00:17:29 -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
checkcliargs.sh Added script to validate CLI arguments 2024-01-31 00:12:17 -08:00
LICENSE.txt Initial commit 2023-11-03 21:31:09 -07:00
README.md Added references to the template and support documentation 2024-01-31 12:25:27 -08:00

Kotlin Extension for bld

License Java Kotlin bld Release Snapshot GitHub CI

To install, please refer to the extensions and support documentation.

Compile Kotlin Source Code

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

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

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

Generate Javadoc

To generate the Javadoc using Dokka:

@BuildCommand(summary = "Generates Javadoc for the project")
public void javadoc() throws ExitStatusException, IOException, InterruptedException {
    new DokkaOperation()
            .fromProject(this)
            .outputDir(new File(buildDirectory(), "javadoc"))
            .outputFormat(OutputFormat.JAVADOC)
            .execute();
}
./bld javadoc

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

Template Project

There is also a Template Project with support for Dokka and the Detekt extensions.