From a2ae80239d1bc0d5dc5eb9ee35205fbdc10af03a Mon Sep 17 00:00:00 2001 From: shedaniel Date: Sun, 30 May 2021 20:46:50 +0800 Subject: [PATCH] Disable module files, we can't have those, they point to the wrong files Signed-off-by: shedaniel --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 3ba3075d..fa862d82 100644 --- a/build.gradle +++ b/build.gradle @@ -345,3 +345,7 @@ task writeActionsTestMatrix() { tasks.named('wrapper') { distributionType = Wrapper.DistributionType.ALL } + +tasks.withType(GenerateModuleMetadata) { + enabled = false +}