Initial commit

This commit is contained in:
kageru 2019-10-07 22:08:37 +02:00
commit 51d14216e9
Signed by: kageru
GPG Key ID: 8282A2BEA4ADA3D2
3 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
gradle*
.gradle/

19
build.gradle.kts Normal file
View File

@ -0,0 +1,19 @@
plugins {
kotlin("jvm") version "1.3.50"
}
group = "moe.kageru"
version = "0.1.0"
repositories {
mavenCentral()
}
val test by tasks.getting(Test::class) {
useJUnitPlatform { }
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("io.kotlintest:kotlintest-runner-junit5:3.4.2")
}

2
settings.gradle Normal file
View File

@ -0,0 +1,2 @@
rootProject.name = 'sekwence'