1
0

Initial commit

This commit is contained in:
2020-12-01 02:12:55 +01:00
commit de750de96a
20 changed files with 516 additions and 0 deletions
@@ -0,0 +1,23 @@
plugins {
id("java-library")
id("junit-convention")
}
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/") }
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
}
group = "be.vandewalleh"
version = "1.0-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_15
targetCompatibility = JavaVersion.VERSION_15
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}