Add implementation details to each jar manifest.
This commit is contained in:
parent
38adbbd42d
commit
0ea9a701a3
|
@ -92,6 +92,17 @@ dependencies {
|
||||||
testCompile group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
|
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 {
|
tasks.withType(Javadoc).configureEach {
|
||||||
options.encoding = "utf-8"
|
options.encoding = "utf-8"
|
||||||
options.docEncoding = "utf-8"
|
options.docEncoding = "utf-8"
|
||||||
|
|
Loading…
Reference in New Issue