forked from open-telemetry/opentelemetry-java-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (24 loc) · 907 Bytes
/
settings.gradle
File metadata and controls
26 lines (24 loc) · 907 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
pluginManagement {
plugins {
id "com.diffplug.spotless" version "5.16.0"
id "com.github.johnrengelman.shadow" version "7.0.0"
id 'com.google.protobuf' version '0.8.17'
}
}
rootProject.name = "opentelemetry-java-examples"
include ":opentelemetry-examples-javaagent",
":opentelemetry-examples-autoconfigure",
":opentelemetry-examples-grpc",
":opentelemetry-examples-http",
":opentelemetry-examples-jaeger",
":opentelemetry-examples-metrics",
":opentelemetry-examples-micrometer-shim",
":opentelemetry-examples-prometheus",
":opentelemetry-examples-otlp",
":opentelemetry-examples-sdk-usage",
":opentelemetry-examples-zipkin",
":opentelemetry-examples-logging"
rootProject.children.each {
it.projectDir = "$rootDir/" + it.name
.replace("opentelemetry-examples-", "") as File
}