Skip to content

Instantly share code, notes, and snippets.

@ClausPolanka
Created November 6, 2023 17:20
Show Gist options
  • Save ClausPolanka/bdd8af73a39751c889b0f7a98fe09793 to your computer and use it in GitHub Desktop.
Save ClausPolanka/bdd8af73a39751c889b0f7a98fe09793 to your computer and use it in GitHub Desktop.
Minimal Kotlin-Script Gradle build file for a Kotlin project (only compiling)
plugins {
id("org.jetbrains.kotlin.jvm") version "1.9.10"
}
repositories {
mavenCentral()
}
@ClausPolanka
Copy link
Author

Building Kotlin Applications Sample
https://docs.gradle.org/current/samples/sample_building_kotlin_applications.html

Kotlin Doc for configuring Gradle builds
https://kotlinlang.org/docs/gradle.html

Gradle Kotlin Plugin
org.jetbrains.kotlin.jvm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment