-
Notifications
You must be signed in to change notification settings - Fork 34
/
settings.gradle.kts
47 lines (44 loc) · 1.2 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 {
plugins {
id("com.bmuschko.docker-remote-api") version "9.4.0"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("com.github.jk1.dependency-license-report") version "2.9"
id("com.gradleup.shadow") version "8.3.5"
}
}
plugins {
id("com.gradle.develocity") version "3.18.2"
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = if (System.getenv("CI") != null) "yes" else "no"
}
}
rootProject.name = "splunk-otel-java"
include(":dependencyManagement")
include(
"agent",
"bootstrap",
"custom",
"instrumentation",
"instrumentation:compile-stub",
"instrumentation:glassfish",
"instrumentation:jetty",
"instrumentation:jvm-metrics",
"instrumentation:khttp",
"instrumentation:liberty",
"instrumentation:servlet-3-testing",
"instrumentation:tomcat",
"instrumentation:tomee",
"instrumentation:weblogic",
"instrumentation:websphere",
"instrumentation:wildfly",
"metadata-generator",
"matrix",
"profiler",
"smoke-tests",
"testing:agent-for-testing",
"testing:agent-test-extension",
"testing:jmh-benchmarks",
"testing:common")