We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6135ff4 commit e817284Copy full SHA for e817284
build.gradle.kts
@@ -85,6 +85,14 @@ configurations.configureEach {
85
}
86
87
88
+publishing.publications.withType<MavenPublication>().configureEach {
89
+ // We don't care about capabilities being unmappable to Maven.
90
+ suppressPomMetadataWarningsFor(API_ELEMENTS_CONFIGURATION_NAME)
91
+ suppressPomMetadataWarningsFor(RUNTIME_ELEMENTS_CONFIGURATION_NAME)
92
+ suppressPomMetadataWarningsFor(JAVADOC_ELEMENTS_CONFIGURATION_NAME)
93
+ suppressPomMetadataWarningsFor(SOURCES_ELEMENTS_CONFIGURATION_NAME)
94
+}
95
+
96
dependencies {
97
compileOnly(libs.kotlin.kmp)
98
implementation(libs.apache.ant)
0 commit comments