plugins { id 'java' id 'application' id "org.jetbrains.kotlin.jvm" } java { toolchain { languageVersion = JavaLanguageVersion.of(javaVersion) } } compileKotlin { kotlinOptions { jvmTarget = javaVersion } } compileTestKotlin { kotlinOptions { jvmTarget = javaVersion } } dependencies { // should have no dependencies to other modules implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" } sourceSets { main { java { srcDirs = ["${project.projectDir}/src"] } resources { srcDirs = ["${project.projectDir}/res"] } } } // note: there are no unit tests in this module!