Skip to content

Commit

Permalink
Merge pull request #1 from miqdigital/issue-50
Browse files Browse the repository at this point in the history
Set javadoc encoding to utf-8 (opensearch-project#50)
Signed-off-by: Meetesh Kumawat <[email protected]>
  • Loading branch information
meetesh authored Oct 14, 2022
2 parents 94eb007 + d939cd6 commit 7b92dcf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ tasks.withType<ProcessResources> {
)
}

tasks.withType<Javadoc>().configureEach{
options {
encoding = "UTF-8"
}
}

tasks.withType<Jar> {
doFirst {
if (rootProject.extra.has("gitHashFull")) {
Expand Down

0 comments on commit 7b92dcf

Please sign in to comment.