forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
404 lines (342 loc) · 13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/*
* Copyright 2010 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.
*/
import org.gradle.api.internal.GradleInternal
import org.gradle.build.BuildReceipt
import org.gradle.build.Install
import org.gradle.gradlebuild.ProjectGroups
import org.gradle.modules.PatchExternalModules
import org.gradle.gradlebuild.BuildEnvironment
import org.gradle.gradlebuild.ProjectGroups.implementationPluginProjects
import org.gradle.gradlebuild.ProjectGroups.javaProjects
import org.gradle.gradlebuild.ProjectGroups.pluginProjects
import org.gradle.gradlebuild.ProjectGroups.publishedProjects
import org.gradle.util.GradleVersion
import org.gradle.gradlebuild.buildquality.incubation.IncubatingApiAggregateReportTask
import org.gradle.gradlebuild.buildquality.incubation.IncubatingApiReportTask
plugins {
`java-base`
gradlebuild.`build-types`
gradlebuild.`ci-reporting`
// TODO Apply this plugin in the BuildScanConfigurationPlugin once binary plugins can apply plugins via the new plugin DSL
// We have to apply it here at the moment, so that when the build scan plugin is auto-applied via --scan can detect that
// the plugin has been already applied. For that the plugin has to be applied with the new plugin DSL syntax.
com.gradle.`build-scan`
id("org.gradle.ci.tag-single-build")
}
defaultTasks("assemble")
base.archivesBaseName = "gradle"
buildTypes {
create("compileAllBuild") {
tasks(":createBuildReceipt", "compileAll")
projectProperties("ignoreIncomingBuildReceipt" to true)
}
create("sanityCheck") {
tasks(
"classes", "doc:checkstyleApi", "codeQuality", "allIncubationReportsZip",
"docs:check", "distribution:checkBinaryCompatibility", "javadocAll",
"architectureTest:test")
}
// Used by the first phase of the build pipeline, running only last version on multiversion - tests
create("quickTest") {
tasks("test", "integTest", "crossVersionTest")
}
// Used for builds to run all tests, but not necessarily on all platforms
create("fullTest") {
tasks("test", "forkingIntegTest", "forkingCrossVersionTest")
projectProperties("testAllVersions" to true)
}
// Used for builds to test the code on certain platforms
create("platformTest") {
tasks("test", "forkingIntegTest", "forkingCrossVersionTest")
projectProperties(
"testAllVersions" to true,
"testAllPlatforms" to true
)
}
// Tests not using the daemon mode
create("noDaemonTest") {
tasks("noDaemonIntegTest")
projectProperties("useAllDistribution" to true)
}
// Run the integration tests using the parallel executer
create("parallelTest") {
tasks("parallelIntegTest")
}
create("performanceTests") {
tasks("performance:performanceTest")
}
create("performanceExperiments") {
tasks("performance:performanceExperiments")
}
create("fullPerformanceTests") {
tasks("performance:fullPerformanceTest")
}
create("distributedPerformanceTests") {
tasks("performance:distributedPerformanceTest")
}
create("distributedPerformanceExperiments") {
tasks("performance:distributedPerformanceExperiment")
}
create("distributedFullPerformanceTests") {
tasks("performance:distributedFullPerformanceTest")
}
// Used for cross version tests on CI
create("allVersionsCrossVersionTest") {
tasks("allVersionsCrossVersionTests")
}
create("quickFeedbackCrossVersionTest") {
tasks("quickFeedbackCrossVersionTests")
}
// Used to build production distros and smoke test them
create("packageBuild") {
tasks(
"verifyIsProductionBuildEnvironment", "clean", "buildDists",
"distributions:integTest")
}
// Used to build production distros and smoke test them
create("promotionBuild") {
tasks(
"verifyIsProductionBuildEnvironment", "clean", "docs:check",
"buildDists", "distributions:integTest", "uploadArchives")
}
create("soakTest") {
tasks("soak:soakTest")
projectProperties("testAllVersions" to true)
}
// Used to run the dependency management engine in "force component realization" mode
create("forceRealizeDependencyManagementTest") {
tasks("integForceRealizeTest")
}
}
allprojects {
group = "org.gradle"
repositories {
maven {
name = "Gradle libs"
url = uri("https://repo.gradle.org/gradle/libs")
}
maven {
name = "kotlinx"
url = uri("https://kotlin.bintray.com/kotlinx/")
}
maven {
name = "kotlin-eap"
url = uri("https://dl.bintray.com/kotlin/kotlin-eap")
}
}
// patchExternalModules lives in the root project - we need to activate normalization there, too.
normalization {
runtimeClasspath {
ignore("org/gradle/build-receipt.properties")
}
}
}
apply(plugin = "gradlebuild.cleanup")
apply(plugin = "gradlebuild.available-java-installations")
apply(plugin = "gradlebuild.buildscan")
apply(from = "gradle/versioning.gradle")
apply(from = "gradle/dependencies.gradle")
apply(plugin = "gradlebuild.minify")
apply(from = "gradle/testDependencies.gradle")
apply(plugin = "gradlebuild.wrapper")
apply(plugin = "gradlebuild.ide")
apply(plugin = "gradlebuild.no-resolution-at-configuration")
apply(plugin = "gradlebuild.update-versions")
apply(plugin = "gradlebuild.dependency-vulnerabilities")
apply(plugin = "gradlebuild.add-verify-production-environment-task")
allprojects {
apply(plugin = "gradlebuild.dependencies-metadata-rules")
}
subprojects {
version = rootProject.version
if (project in javaProjects) {
apply(plugin = "gradlebuild.java-projects")
}
if (project in publishedProjects) {
apply(plugin = "gradlebuild.publish-public-libraries")
}
apply(from = "$rootDir/gradle/shared-with-buildSrc/code-quality-configuration.gradle.kts")
apply(plugin = "gradlebuild.task-properties-validation")
apply(plugin = "gradlebuild.test-files-cleanup")
}
val runtimeUsage = objects.named(Usage::class.java, Usage.JAVA_RUNTIME)
val coreRuntime by configurations.creating {
attributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage)
isCanBeResolved = true
isCanBeConsumed = false
isVisible = false
}
val coreRuntimeExtensions by configurations.creating {
attributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage)
isCanBeResolved = true
isCanBeConsumed = false
isVisible = false
}
val externalModules by configurations.creating {
isVisible = false
}
/**
* Configuration used to resolve external modules before patching them with versions from core runtime
*/
val externalModulesRuntime by configurations.creating {
isVisible = false
extendsFrom(coreRuntime)
extendsFrom(externalModules)
}
/**
* Combines the 'coreRuntime' with the patched external module jars
*/
val runtime by configurations.creating {
isVisible = false
extendsFrom(coreRuntime)
}
val gradlePlugins by configurations.creating {
isVisible = false
}
val testRuntime by configurations.creating {
extendsFrom(runtime)
extendsFrom(gradlePlugins)
}
// TODO: These should probably be all collapsed into a single variant
configurations {
create("gradleApiMetadataElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
extendsFrom(runtime)
extendsFrom(gradlePlugins)
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "metadata")
}
}
configurations {
create("gradleApiRuntimeElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
extendsFrom(externalModules)
extendsFrom(gradlePlugins)
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "runtime")
}
}
configurations {
create("gradleApiCoreElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
extendsFrom(runtime)
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "core")
}
}
configurations {
create("gradleApiCoreExtensionsElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
extendsFrom(coreRuntime)
extendsFrom(coreRuntimeExtensions)
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "core-ext")
}
}
configurations {
create("gradleApiPluginElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
extendsFrom(gradlePlugins)
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "plugins")
}
}
configurations {
create("gradleApiReceiptElements") {
isVisible = false
isCanBeResolved = false
isCanBeConsumed = true
attributes.attribute(Attribute.of("org.gradle.api", String::class.java), "build-receipt")
// TODO: Update BuildReceipt to retain dependency information by using Provider
val createBuildReceipt = tasks.named("createBuildReceipt", BuildReceipt::class.java)
val receiptFile = createBuildReceipt.map {
it.receiptFile
}
outgoing.artifact(receiptFile) {
builtBy(createBuildReceipt)
}
}
}
configurations {
all {
attributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage)
}
}
extra["allTestRuntimeDependencies"] = testRuntime.allDependencies
val patchedExternalModulesDir = buildDir / "external/files"
val patchedExternalModules = files(provider { fileTree(patchedExternalModulesDir).files.sorted() })
patchedExternalModules.builtBy("patchExternalModules")
dependencies {
externalModules("org.gradle:gradle-kotlin-dsl:${BuildEnvironment.gradleKotlinDslVersion}")
externalModules("org.gradle:gradle-kotlin-dsl-provider-plugins:${BuildEnvironment.gradleKotlinDslVersion}")
externalModules("org.gradle:gradle-kotlin-dsl-tooling-builders:${BuildEnvironment.gradleKotlinDslVersion}")
coreRuntime(project(":launcher"))
coreRuntime(project(":runtimeApiInfo"))
runtime(project(":wrapper"))
runtime(project(":installationBeacon"))
runtime(patchedExternalModules)
pluginProjects.forEach { gradlePlugins(it) }
implementationPluginProjects.forEach { gradlePlugins(it) }
gradlePlugins(project(":workers"))
gradlePlugins(project(":dependencyManagement"))
gradlePlugins(project(":testKit"))
coreRuntimeExtensions(project(":dependencyManagement")) //See: DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES
coreRuntimeExtensions(project(":pluginUse"))
coreRuntimeExtensions(project(":workers"))
coreRuntimeExtensions(patchedExternalModules)
testRuntime(project(":apiMetadata"))
}
extra["allCoreRuntimeExtensions"] = coreRuntimeExtensions.allDependencies
tasks.register<PatchExternalModules>("patchExternalModules") {
allModules = externalModulesRuntime
coreModules = coreRuntime
modulesToPatch = this@Build_gradle.externalModules
destination = patchedExternalModulesDir
outputs.doNotCacheIfSlowInternetConnection()
}
evaluationDependsOn(":distributions")
val gradle_installPath: Any? = findProperty("gradle_installPath")
tasks.register<Install>("install") {
description = "Installs the minimal distribution into directory $gradle_installPath"
group = "build"
with(distributionImage("binDistImage"))
installDirPropertyName = ::gradle_installPath.name
}
tasks.register<Install>("installAll") {
description = "Installs the full distribution into directory $gradle_installPath"
group = "build"
with(distributionImage("allDistImage"))
installDirPropertyName = ::gradle_installPath.name
}
fun distributionImage(named: String) =
project(":distributions").property(named) as CopySpec
val allIncubationReports = tasks.register<IncubatingApiAggregateReportTask>("allIncubationReports") {
val allReports = collectAllIncubationReports()
dependsOn(allReports)
reports = allReports.associateBy({ it.title.get()}) { it.textReportFile.asFile.get() }
}
tasks.register<Zip>("allIncubationReportsZip") {
destinationDir = file("$buildDir/reports/incubation")
baseName = "incubating-apis"
from(allIncubationReports.get().htmlReportFile)
from(collectAllIncubationReports().map { it.htmlReportFile })
}
fun Project.collectAllIncubationReports() = subprojects.flatMap { it.tasks.withType(IncubatingApiReportTask::class) }