Build: Introduce resolveDependencies task

It is used on the build server to pre-download all dependencies and
check that verification-metadata.xml is up-to-date
 #KTI-72
This commit is contained in:
Vyacheslav Gerasimov
2023-05-03 14:37:35 +02:00
committed by Space Team
parent 7c1ffc4eb2
commit 01b6af452f
2 changed files with 82 additions and 5 deletions
+6 -5
View File
@@ -95,6 +95,7 @@ rootProject.apply {
from(rootProject.file("gradle/retryPublishing.gradle.kts"))
from(rootProject.file("gradle/modularizedTestConfigurations.gradle.kts"))
from(rootProject.file("gradle/ideaRtHack.gradle.kts"))
from(rootProject.file("gradle/resolveDependencies.gradle.kts"))
}
IdeVersionConfigurator.setCurrentIde(project)
@@ -168,11 +169,11 @@ val firCompilerCoreModules = arrayOf(
).also { extra["firCompilerCoreModules"] = it }
val firAllCompilerModules = firCompilerCoreModules +
arrayOf(
":compiler:fir:raw-fir:light-tree2fir",
":compiler:fir:analysis-tests",
":compiler:fir:analysis-tests:legacy-fir-tests"
)
arrayOf(
":compiler:fir:raw-fir:light-tree2fir",
":compiler:fir:analysis-tests",
":compiler:fir:analysis-tests:legacy-fir-tests"
)
val fe10CompilerModules = arrayOf(
":compiler",