forked from signalfx/splunk-otel-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
66 lines (63 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
pluginManagement {
plugins {
id("com.bmuschko.docker-remote-api") version "7.4.0"
id("com.github.johnrengelman.shadow") version "7.1.2"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
id("nebula.release") version "16.0.0"
id("org.gradle.test-retry") version "1.4.0"
id("org.unbroken-dome.test-sets") version "4.0.0"
}
}
plugins {
id("com.gradle.enterprise") version "3.10.1"
}
if (System.getenv("CI") != null) {
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}
rootProject.name = "splunk-otel-java"
include(
"agent",
"bootstrap",
"custom",
"instrumentation",
"instrumentation:c3p0",
"instrumentation:common",
"instrumentation:commons-dbcp2",
"instrumentation:compile-stub",
"instrumentation:glassfish",
"instrumentation:hikaricp",
"instrumentation:jetty",
"instrumentation:jvm-metrics",
"instrumentation:khttp",
"instrumentation:liberty",
"instrumentation:micrometer-1.3",
"instrumentation:micrometer-1.3-shaded-for-instrumenting",
"instrumentation:micrometer-1.5",
"instrumentation:micrometer-1.5-shaded-for-instrumenting",
"instrumentation:micrometer-common",
"instrumentation:micrometer-testing",
"instrumentation:netty-3.8",
"instrumentation:netty-4.0",
"instrumentation:netty-4.1",
"instrumentation:oracle-ucp",
"instrumentation:servlet",
"instrumentation:servlet-3-testing",
"instrumentation:tomcat",
"instrumentation:tomcat-jdbc",
"instrumentation:tomee",
"instrumentation:vibur-dbcp",
"instrumentation:weblogic",
"instrumentation:websphere",
"instrumentation:wildfly",
"matrix",
"profiler",
"smoke-tests",
"testing:agent-for-testing",
"testing:agent-test-extension",
"testing:jmh-benchmarks",
"testing:common")