Wizard: exclude new wizard from AS build

This commit is contained in:
Ilya Kirillov
2020-03-07 15:29:56 +03:00
parent 38ff41a524
commit 377cdfdb2d
7 changed files with 26 additions and 45 deletions
+6 -4
View File
@@ -39,9 +39,6 @@ val projectsToShadow by extra(listOf(
":idea:scripting-support",
":idea:idea-j2k",
":idea:formatter",
":libraries:tools:new-project-wizard",
":idea:idea-new-project-wizard",
":libraries:tools:new-project-wizard:new-project-wizard-cli",
":compiler:psi",
":compiler:fir:cones",
":compiler:fir:checkers",
@@ -92,7 +89,12 @@ val projectsToShadow by extra(listOf(
":idea:idea-git",
":idea:idea-jps-common",
*if (Ide.IJ())
arrayOf(":idea:idea-maven")
arrayOf(
":idea:idea-maven",
":libraries:tools:new-project-wizard",
":idea:idea-new-project-wizard",
":libraries:tools:new-project-wizard:new-project-wizard-cli"
)
else
emptyArray<String>()
))