refactor: updated folder structure

This commit is contained in:
sindrekjelsrud 2023-06-26 12:52:58 +02:00
parent 9c17a72625
commit b4f93a054a
18 changed files with 31 additions and 4 deletions

View file

@ -0,0 +1,27 @@
plugins {
kotlin("jvm") version "1.8.21"
application
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(11)
}
application {
mainClass.set("MainKt")
}