<lambda>null1plugins { 2 kotlin("multiplatform") 3 application 4 } 5 <lambda>null6application { 7 mainClass.set(System.getProperty("mainClass")) 8 } 9 <lambda>null10kotlin { 11 jvm { 12 withJava() 13 } 14 sourceSets { 15 commonMain { 16 dependencies { 17 implementation(projects.okio) 18 } 19 } 20 val jvmTest by getting { 21 dependencies { 22 implementation(libs.test.junit) 23 implementation(libs.test.assertj) 24 } 25 } 26 } 27 } 28