We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b13de6 commit 2f9315aCopy full SHA for 2f9315a
1 file changed
build.gradle
@@ -20,7 +20,7 @@ apply plugin: 'com.vanniktech.maven.publish'
20
group = 'io.split.client'
21
22
ext {
23
- splitVersion = '5.4.3-rc1'
+ splitVersion = '5.4.3-rc2'
24
jacocoVersion = '0.8.8'
25
}
26
@@ -356,4 +356,15 @@ afterEvaluate {
356
357
358
359
+
360
+ // Disable Gradle Module Metadata (.module file) to avoid variant ambiguity
361
+ // Disable all GenerateModuleMetadata tasks by name pattern
362
+ tasks.configureEach { task ->
363
+ // Match tasks related to module metadata generation
364
+ if (task.name.startsWith('generateMetadataFileFor') ||
365
+ task.name == 'generateModuleMetadata' ||
366
+ task.class.name.endsWith('GenerateModuleMetadata')) {
367
+ task.enabled = false
368
+ }
369
370
0 commit comments