initial commit

This commit is contained in:
Wieland Schöbl
2021-04-29 23:05:28 +02:00
commit b9bea1e893
14 changed files with 655 additions and 0 deletions

32
build.gradle.kts Normal file
View File

@@ -0,0 +1,32 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.4.32"
application
}
group = "de.wulkanat"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
implementation("com.github.HMCore:Core:main-SNAPSHOT")
testImplementation(kotlin("test-junit"))
}
tasks.test {
useJUnit()
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
}
application {
mainClassName = "MainKt"
}