Created
November 6, 2023 17:20
-
-
Save ClausPolanka/bdd8af73a39751c889b0f7a98fe09793 to your computer and use it in GitHub Desktop.
Minimal Kotlin-Script Gradle build file for a Kotlin project (only compiling)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id("org.jetbrains.kotlin.jvm") version "1.9.10" | |
} | |
repositories { | |
mavenCentral() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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