(minor fix) Remove extra underscore from module names
This commit is contained in:
+1
-1
@@ -164,7 +164,7 @@ abstract class AbstractKotlinCompile<T : CommonCompilerArguments>() : AbstractKo
|
||||
val baseName = project.convention.findPlugin(BasePluginConvention::class.java)?.archivesBaseName
|
||||
?: project.name
|
||||
val suffix = if (sourceSetName == "main") "" else "_$sourceSetName"
|
||||
return filterModuleName("${baseName}_$suffix")
|
||||
return filterModuleName("${baseName}$suffix")
|
||||
}
|
||||
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
|
||||
Reference in New Issue
Block a user