forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
40 lines (36 loc) · 2.12 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
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.ci-reporting") // CI: Prepare reports to be uploaded to TeamCity
id("gradlebuild.buildscan") // Reporting: Add more data through custom tags to build scans
id("gradlebuild.ide") // Local development: Tweak IDEA import
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')
id("gradlebuild.quick-check") // Local development: Convenience task `quickCheck` for running checkstyle/codenarc only on changed files before commit
}
buildscript {
dependencies {
constraints {
classpath("xerces:xercesImpl:2.12.0") {
// it's unclear why we don't get this version directly from buildSrc constraints
because("Maven Central and JCenter disagree on version 2.9.1 metadata")
}
}
}
}