23 lines
453 B
Plaintext
23 lines
453 B
Plaintext
plugins {
|
|
id("java-library")
|
|
id("junit-convention")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
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_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
}
|