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.20" } sourceSets { main { java { srcDir "${project.projectDir}/src" } resources { srcDir "${project.projectDir}/res" } } } // note: there are no unit tests in this module!