Don't set packaging type explicitly since Gradle determines it automatically, set description for BOM project, and remove outdated bom publication configuration (#1758) (#1759)
This commit is contained in:
parent
69bbf6791a
commit
04fbce2f0a
|
|
@ -3,6 +3,7 @@ plugins {
|
|||
id "maven-publish"
|
||||
}
|
||||
|
||||
description = 'OpenTelemetry Bill of Materials'
|
||||
group = "io.opentelemetry"
|
||||
|
||||
dependencies {
|
||||
|
|
@ -16,12 +17,3 @@ dependencies {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
mavenBom(MavenPublication) {
|
||||
artifactId = 'opentelemetry-bom'
|
||||
from components.javaPlatform
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -41,7 +41,6 @@ subprojects {
|
|||
|
||||
pom {
|
||||
name = 'OpenTelemetry Java'
|
||||
packaging = 'jar'
|
||||
url = 'https://github.com/open-telemetry/opentelemetry-java'
|
||||
|
||||
licenses {
|
||||
|
|
|
|||
Loading…
Reference in New Issue