-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging javadoc feature branch changes to main #715
Conversation
Use `./gradlew missingJavadoc` to validate missing javadocs. Currently this task fails because several modules are missing appropriate javadocs. Once added, this should pass. Also, precommit PomValidation check currently fails with missing Javadoc plugin, that needs to be fixed - opensearch-project#449 Thus keeping this in a separate feature branch. Signed-off-by: Himanshu Setia <[email protected]>
* Fix Javadoc errors in client/rest module Signed-off-by: Gregor Zurowski <[email protected]> * Add package info file in client/rest module Signed-off-by: Gregor Zurowski <[email protected]> * Fix typos Signed-off-by: Gregor Zurowski <[email protected]> * Add exception documentation to Javadoc Signed-off-by: Gregor Zurowski <[email protected]>
opensearch-project#707) * Fixes precommit task configuration failures due to newly added missingJavadoc task Signed-off-by: Himanshu Setia <[email protected]> * Fixes javadoc task errors due to PR#685 Signed-off-by: Himanshu Setia <[email protected]>
Signed-off-by: Himanshu Setia <[email protected]>
Signed-off-by: Himanshu Setia <[email protected]>
buildSrc/reaper/src/main/java/org/elasticsearch/gradle/reaper/package-info.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Himanshu Setia <[email protected]>
✅ Gradle Wrapper Validation success f218934 |
✅ DCO Check Passed f218934 |
Signed-off-by: Himanshu Setia <[email protected]>
✅ Gradle Precommit success f218934 |
✅ DCO Check Passed 7ee64c0 |
✅ Gradle Wrapper Validation success 7ee64c0 |
✅ Gradle Precommit success 7ee64c0 |
@@ -30,6 +30,8 @@ | |||
|
|||
apply plugin: 'opensearch.java' | |||
|
|||
group = 'hdfs' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the name of the group fine? The above 2 names are fixture.xxx
, but these 2 names without the fixture
prefix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that discrepancy exists from the legacy codebase. The imports inside hdfs module use package name as hdfs
unlike other fixture modules. Probably we can fix the hdfs module in a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
start gradle check |
Description
This PR merges changes in javadoc feature branch to main branch. It includes -
:client:rest
(PR Fix Javadoc errors in moduleclient/rest
#685)Issues Resolved
#449 , #221
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.
Signed-off-by: Himanshu Setia [email protected]