From fa624d33d5334f755bc7575d606b6eefed148385 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Mon, 13 Jul 2026 17:20:31 -0700 Subject: [PATCH] Remove Gradle .module files from Maven package validation 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 --- scripts/validatePackageContents.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/validatePackageContents.ps1 b/scripts/validatePackageContents.ps1 index 3eabdab45c0..87e52c12dbd 100644 --- a/scripts/validatePackageContents.ps1 +++ b/scripts/validatePackageContents.ps1 @@ -26,8 +26,6 @@ $expectedFiles = @( "-javadoc.jar.asc", "-sources.jar", "-sources.jar.asc", - ".module", - ".module.asc", ".pom", ".pom.asc", ".jar",