Actually set POM description. (#1861)

This commit is contained in:
Anuraag Agrawal 2020-12-09 17:35:42 +09:00 committed by GitHub
parent f70eaf1896
commit 5f942d874e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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.'
}
}