File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ kotlin {
9898 val suffix = name.substring(suffixIndex).toLowerCase(Locale .ROOT ).takeIf { it != " main" }
9999// println("SOURCE_SET: $name")
100100 kotlin.srcDir(" $targetName /${suffix ? : " src" } " )
101- resources.srcDir(" $targetName /${suffix?.let { it + " Resources " } ? : " resources" } " )
101+ resources.srcDir(" $targetName /${suffix?.let { it + " Resources" } ? : " resources" } " )
102102 languageSettings.apply {
103103 // progressiveMode = true
104104 useExperimentalAnnotation(" kotlin.Experimental" )
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ kotlin {
5858 val targetName = name.substring(0 , suffixIndex)
5959 val suffix = name.substring(suffixIndex).toLowerCase(Locale .ROOT ).takeIf { it != " main" }
6060 kotlin.srcDir(" $targetName /${suffix ? : " src" } " )
61- resources.srcDir(" $targetName /${suffix?.let { it + " Resources " } ? : " resources" } " )
61+ resources.srcDir(" $targetName /${suffix?.let { it + " Resources" } ? : " resources" } " )
6262 languageSettings.apply {
6363 useExperimentalAnnotation(" kotlin.Experimental" )
6464 }
You can’t perform that action at this time.
0 commit comments