// Put this at the very bottom of your build.gradle
tasks.withType(GenerateMavenPom).configureEach {
if (name.contains("MyPlatform")) {
suppressedValidationErrors.add('enforced-platform')
}
}
tasks.withType(GenerateModuleMetadata).configureEach {
if (name.contains("MyPlatform")) {
suppressedValidationErrors.add('enforced-platform')
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)