[Pill] Remove 'jps-compatible' plugin from the root Kotlin project

'excludedDirs' definition is not needed anymore, so the plugin usage
is not really useful.
This commit is contained in:
Yan Zhulanow
2023-12-06 22:16:41 +09:00
committed by Space Team
parent d4153c1458
commit e4da639e1c
2 changed files with 1 additions and 11 deletions
@@ -39,7 +39,7 @@ class ModelParser(private val modulePrefix: String, private val globalExcludedDi
}
val (includedProjects, excludedProjects) = project.allprojects
.partition { it.plugins.hasPlugin("jps-compatible") }
.partition { it == project || it.plugins.hasPlugin("jps-compatible") }
val modules = includedProjects.flatMap { parseModules(it, excludedProjects) }
val artifacts = parseArtifacts(project)