Skip to content

Instantly share code, notes, and snippets.

@ClausPolanka
Created November 6, 2023 17:51
Show Gist options
  • Save ClausPolanka/a183178a2113f42d9ec92090549daa3f to your computer and use it in GitHub Desktop.
Save ClausPolanka/a183178a2113f42d9ec92090549daa3f to your computer and use it in GitHub Desktop.
Minimal Kotlin-Script Gradle build file for a Kotlin project using JUnit 5
plugins {
id("org.jetbrains.kotlin.jvm") version "1.9.10"
}
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
}
tasks.test {
useJUnitPlatform()
}
@ClausPolanka
Copy link
Author

ClausPolanka commented Nov 6, 2023

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