Skip to content

Commit

Permalink
another attempt to fix javadoc build with jdk13
Browse files Browse the repository at this point in the history
  • Loading branch information
terzerm committed Feb 17, 2020
1 parent 2d4705d commit aec8d7e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@ sourceSets.main.resources {
}

jar {
manifest {
attributes 'Implementation-Title': 'decimal4j', 'Implementation-Version': project.version
}
manifest.attributes(
'Implementation-Title': 'decimal4j',
'Implementation-Version': "${project.version}",
'Implementation-Vendor': 'tools4j',
'Automatic-Module-Name': 'org.decimal4j'
)
}

repositories {
Expand Down Expand Up @@ -132,7 +135,7 @@ javadoc {
options.showFromPackage()
options.linkSource()
options.links("http://docs.oracle.com/javase/8/docs/api/");
options.windowTitle = "decimal4j API ${version}"
options.windowTitle = "decimal4j API ${project.version}"
options.overview = "src/main/java/overview.html";
}

Expand Down

0 comments on commit aec8d7e

Please sign in to comment.