20 lines
438 B
Groovy
20 lines
438 B
Groovy
plugins {
|
|
id "java-platform"
|
|
id "maven-publish"
|
|
}
|
|
|
|
description = 'OpenTelemetry Bill of Materials'
|
|
group = "io.opentelemetry"
|
|
|
|
dependencies {
|
|
constraints {
|
|
parent.childProjects.sort { "$it.value" }
|
|
.collect { it.value }
|
|
.findAll { it.name != project.name }
|
|
.each { project ->
|
|
api project
|
|
println project
|
|
}
|
|
}
|
|
}
|