forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
26 lines (22 loc) · 1.48 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
plugins {
id("gradlebuild.root-build")
id("gradlebuild.teamcity-import-test-data") // CI: Import Test tasks' JUnit XML if they're UP-TO-DATE or FROM-CACHE
id("gradlebuild.lifecycle") // CI: Add lifecycle tasks to for the CI pipeline (currently needs to be applied early as it might modify global properties)
id("gradlebuild.generate-subprojects-info") // CI: Generate subprojects information for the CI testing pipeline fan out
id("gradlebuild.cleanup") // CI: Advanced cleanup after the build (like stopping daemons started by tests)
id("gradlebuild.update-versions") // Local development: Convenience tasks to update versions in this build: 'released-versions.json', 'agp-versions.properties', ...
id("gradlebuild.wrapper") // Local development: Convenience tasks to update the wrapper (like 'nightlyWrapper')
}
description = "Adaptable, fast automation for all"
dependencyAnalysis {
issues {
all {
onUnusedAnnotationProcessors {
// Ignore check for internal-instrumentation-processor, since we apply
// it to all distribution.api-java projects but projects might not have any upgrade
exclude(":internal-instrumentation-processor")
}
ignoreSourceSet("archTest", "crossVersionTest", "docsTest", "integTest", "jmh", "peformanceTest", "smokeTest", "testInterceptors", "testFixtures", "smokeIdeTest")
}
}
}