We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's very easy to forget to keep mavenLocal in a repo's gradle/maven configuration, which prevents the bundle build from forcing a locally built OpenSearch, common-utils or job-scheduler dependency. For example, https://github.com/opensearch-project/index-management/pull/141/files#r717955366
mavenLocal
Add a check that lists maven repos that are being used and ensure the list is the one documented in https://github.com/opensearch-project/opensearch-plugins/blob/main/BUILDING.md: mavenLocal(), mavenCentral(), then maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }.
mavenLocal()
mavenCentral()
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
No response
The text was updated successfully, but these errors were encountered:
Hi @dblock,
We did confirm same as an effort for opensearch-project/opensearch-devops#114 Do we want to add this check as a part of build process/ci check?
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe
It's very easy to forget to keep
mavenLocal
in a repo's gradle/maven configuration, which prevents the bundle build from forcing a locally built OpenSearch, common-utils or job-scheduler dependency. For example, https://github.com/opensearch-project/index-management/pull/141/files#r717955366Describe the solution you'd like
Add a check that lists maven repos that are being used and ensure the list is the one documented in https://github.com/opensearch-project/opensearch-plugins/blob/main/BUILDING.md:
mavenLocal()
,mavenCentral()
, thenmaven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
.Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: