package be.simplenotes plugins { java `java-library` } repositories { mavenCentral() jcenter() maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/") } maven { url = uri("https://kotlin.bintray.com/kotlinx") } } group = "be.simplenotes" version = "1.0-SNAPSHOT" java { sourceCompatibility = JavaVersion.VERSION_15 targetCompatibility = JavaVersion.VERSION_15 } tasks.withType { options.encoding = "UTF-8" } sourceSets["main"].resources.srcDirs("resources") sourceSets["test"].resources.srcDirs("testresources")