-
Notifications
You must be signed in to change notification settings - Fork 5
/
settings.gradle.kts
32 lines (29 loc) · 1.21 KB
/
settings.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
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.7/userguide/multi_project_builds.html in the Gradle documentation.
*/
plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("com.gradle.enterprise") version "3.16.2"
}
gradleEnterprise {
server = "https://dpeuniversity-develocity.gradle.com"
buildScan {
capture {
isTaskInputFiles = true
}
// Optional, Add tags and values that make it easier to find the Build Scan related to this lab.
// See https://docs.gradle.com/develocity/gradle-plugin/current/#extending_build_scans for more information about adding custom information to a Build Scan.
tag("dpeuni-gradle-build-cache-deep-dive-unstable-inputs")
value("Course", "Gradle Build Cache Deep Dive")
}
}
rootProject.name = "dpeuni-gradle-build-cache-deep-dive-unstable-inputs"
include("app")
include("model")
include("core")
include("common")
include("network")