27 lines
728 B
Groovy
27 lines
728 B
Groovy
pluginManagement {
|
|
plugins {
|
|
id "com.diffplug.spotless" version "5.6.1"
|
|
id 'com.google.protobuf' version '0.8.8'
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "opentelemetry-java-examples"
|
|
include ":opentelemetry-examples-grpc",
|
|
":opentelemetry-examples-http",
|
|
":opentelemetry-examples-jaeger",
|
|
":opentelemetry-examples-metrics",
|
|
":opentelemetry-examples-prometheus",
|
|
":opentelemetry-examples-otlp",
|
|
":opentelemetry-examples-sdk-usage",
|
|
":opentelemetry-examples-zipkin"
|
|
|
|
rootProject.children.each {
|
|
it.projectDir = "$rootDir/" + it.name
|
|
.replace("opentelemetry-examples-", "") as File
|
|
}
|