Skip to content

Commit 1fecef8

Browse files
committed
Fix module-name given to the Kotlin compiler for each module
1 parent f5429fb commit 1fecef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allprojects {
2727
subprojects {
2828
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
2929
kotlinOptions {
30-
freeCompilerArgs += ['-module-name', project.path.replace('/', '.').replace(':', '_')]
30+
freeCompilerArgs += ['-module-name', project.path.replace(':', '')]
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)