Skip to content

Commit

Permalink
chore: add git and dep version explicit dependency to all lint vital …
Browse files Browse the repository at this point in the history
…tasks
  • Loading branch information
vitorhugods committed Apr 11, 2024
1 parent 73748cc commit a2b700e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions buildSrc/src/main/kotlin/scripts/compilation.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

package scripts

import WriteKeyValuesToFileTask
import IncludeGitBuildTask
import WriteKeyValuesToFileTask

plugins {
id("com.android.application") apply false
Expand All @@ -45,10 +45,9 @@ project.afterEvaluate {
project.tasks.matching {
it.name.startsWith("merge") &&
it.name.endsWith("Assets") ||
it.name.startsWith("lintVitalAnalyze")
it.name.contains("LintVital", true)
}.configureEach {
dependsOn(gitIdTask)
dependsOn(dependenciesVersionTask)
}
.configureEach {
dependsOn(gitIdTask)
dependsOn(dependenciesVersionTask)
}
}

0 comments on commit a2b700e

Please sign in to comment.