瀏覽代碼

Fix module-name given to the Kotlin compiler for each module

Aidan Follestad 5 年之前
父節點
當前提交
1fecef8a82
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      build.gradle

+ 1 - 1
build.gradle

@@ -27,7 +27,7 @@ allprojects {
 subprojects {
   tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
     kotlinOptions {
-      freeCompilerArgs += ['-module-name', project.path.replace('/', '.').replace(':', '_')]
+      freeCompilerArgs += ['-module-name', project.path.replace(':', '')]
     }
   }
 }