-
Notifications
You must be signed in to change notification settings - Fork 13
/
settings.gradle.kts
47 lines (42 loc) · 1.36 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = "mavenCentralSnapshots"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
rootProject.name = "elastic-otel-java"
include("agent")
include("agent:entrypoint")
include("agentextension")
include("bootstrap")
include("custom")
include("instrumentation")
include("inferred-spans")
include("resources")
include("smoke-tests")
include("smoke-tests:test-app")
include("smoke-tests:test-app-war")
include("testing:agent-for-testing")
include("jvmti-access")
include("common")
include("testing-common")
include("universal-profiling-integration")
include("testing:integration-tests:inferred-spans-test")
include("testing:integration-tests:agent-internals")
include("testing:integration-tests:universal-profiling-test")
dependencyResolutionManagement {
versionCatalogs {
create("catalog") {
// the version catalog is currently limited to a single file due to dependabot
// see https://github.com/dependabot/dependabot-core/issues/8079 for details.
// Also, only the 'gradle/libs.versions.toml' path is supported for now.
from(files("gradle/libs.versions.toml"))
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" //for resolving testing JVMs
}