Add implementation details to each jar manifest.

This commit is contained in:
Tyler Benson 2019-05-06 16:14:41 -07:00
parent 38adbbd42d
commit 0ea9a701a3
1 changed files with 11 additions and 0 deletions

View File

@ -92,6 +92,17 @@ dependencies {
testCompile group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
}
jar {
manifest {
attributes(
"Implementation-Title": project.name,
"Implementation-Version": project.version,
"Implementation-Vendor": "Datadog",
"Implementation-URL" :"https://github.com/datadog/dd-trace-java",
)
}
}
tasks.withType(Javadoc).configureEach {
options.encoding = "utf-8"
options.docEncoding = "utf-8"