forked from elastic/elastic-otel-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
40 lines (36 loc) · 1.11 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
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = "mavenCentralSnapshots"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
rootProject.name = "elastic-otel-java"
include("agent")
include("bootstrap")
include("custom")
include("instrumentation")
include("inferred-spans")
include("resources")
include("resources:repackaged")
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")
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"))
}
}
}