Actually set POM description. (#1861)
This commit is contained in:
parent
f70eaf1896
commit
5f942d874e
|
@ -35,7 +35,6 @@ publishing {
|
|||
|
||||
pom {
|
||||
name = 'OpenTelemetry Instrumentation for Java'
|
||||
description = 'Instrumentation of Java libraries using OpenTelemetry.'
|
||||
packaging = 'jar'
|
||||
url = 'https://github.com/open-telemetry/opentelemetry-java-instrumentation'
|
||||
|
||||
|
@ -62,7 +61,7 @@ publishing {
|
|||
|
||||
afterEvaluate {
|
||||
// description is not available until evaluated.
|
||||
description = project.description
|
||||
description = project.description ?: 'Instrumentation of Java libraries using OpenTelemetry.'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue