-
Notifications
You must be signed in to change notification settings - Fork 279
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
default build.sh logic add for Gradle custom java zippublish plugin #1999
Merged
prudhvigodithi
merged 8 commits into
opensearch-project:main
from
prudhvigodithi:zippublish
Jul 15, 2022
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3a4670d
Added custom plugin eval logic
prudhvigodithi 2fc2604
fixed failure checks
prudhvigodithi 14b13ff
changed to query system property
prudhvigodithi bcd2b77
Added system property for version check
prudhvigodithi 0494431
Added gradle props
prudhvigodithi c278888
publish task name change to publishPluginZipPublicationToZipStagingRe…
prudhvigodithi 96ac55d
Add publishPluginZipPublicationToZipStagingRepository to default buil…
prudhvigodithi e53e657
Add publishPluginZipPublicationToZipStagingRepository to default buil…
prudhvigodithi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can this be renamed to
publishZipsToMavenRepository
or something similar? Much simpler and precise.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.
@gaiksaya
so the reason I have added this way is this var MAVEN_ZIP_PUBLISH_TASK is actually referenced same in the java code, https://github.com/opensearch-project/OpenSearch/pull/2988/files#diff-d56f11b358bf18f6e6c28d2a528aa08d4436d01ce9b3c3c45bab1fa970d9cb43R49 and this is the format
publishMavenzipPublicationToZipstagingRepository
gradle expects for publishing a custom repo (mavenzip) to custom staging repo (zipstaging).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.
just to add this task is coming from the custom gradle plugin (identifies once the plugin is applied).
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.
I see, Yeah I thought this can be changed in upstream PR as well but looks like we can't since its a gradle requirement.