-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
35 lines (32 loc) · 986 Bytes
/
settings.gradle.kts
File metadata and controls
35 lines (32 loc) · 986 Bytes
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
pluginManagement {
includeBuild("build-logic")
val mavenRepositoryProxy = providers.gradleProperty("mavenRepositoryProxy").orNull
repositories {
if (mavenRepositoryProxy != null) {
maven { url = uri(mavenRepositoryProxy) }
}
gradlePluginPortal()
mavenCentral()
}
}
// Centralized dependency resolution - subprojects should not define their own repositories
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
val mavenRepositoryProxy = providers.gradleProperty("mavenRepositoryProxy").orNull
repositories {
if (mavenRepositoryProxy != null) {
maven { url = uri(mavenRepositoryProxy) }
}
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "java-profiler"
include(":ddprof-lib")
include(":ddprof-lib:fuzz")
include(":ddprof-lib:benchmarks")
include(":ddprof-test-tracer")
include(":ddprof-test")
include(":ddprof-test-native")
include(":malloc-shim")
include(":ddprof-stresstest")