Initial commit
This commit is contained in:
commit
fb5250d501
15 changed files with 557 additions and 0 deletions
21
build.gradle.kts
Normal file
21
build.gradle.kts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
plugins {
|
||||
kotlin("jvm") version "2.2.0"
|
||||
}
|
||||
|
||||
group = "me.melijn"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation(kotlin("test"))
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
kotlin {
|
||||
jvmToolchain(21)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue