Remove Gradle .module files from Maven package validation#1370
Open
ramsessanchez wants to merge 1 commit into
Open
Remove Gradle .module files from Maven package validation#1370ramsessanchez wants to merge 1 commit into
ramsessanchez wants to merge 1 commit into
Conversation
validatePackageContents.ps1 expected .module and .module.asc files, which are Gradle Module Metadata artifacts. The pipeline publishes with Maven (./mvnw), which does not generate .module files, causing the validation step to fail. Remove the two Gradle-only entries from the expected files list. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: ca8303b0-dcb7-467f-9d6b-7f68da829576
jingjingjia-ms
approved these changes
Jul 14, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Fixes a package-validation failure in the CI build:
Root cause
scripts/validatePackageContents.ps1expected.moduleand.module.ascfiles. These are Gradle Module Metadata artifacts. The pipeline builds and publishes with Maven (./mvnw), which does not generate.modulefiles. This mismatch was introduced during the Gradle to Maven ESRP migration.Change
Removed
.moduleand.module.ascfrom the expected-files list. The remaining validated artifacts (.jar,-sources.jar,-javadoc.jar,.pomand their.ascsignatures) are all produced by the Maven build.Microsoft Reviewers: Open in CodeFlow