We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7f92db commit 94dafb1Copy full SHA for 94dafb1
gradle/publish.gradle
@@ -33,6 +33,8 @@ def selectArtifactId(project, type, defaultName) {
33
34
def isAvailableForPublication(publication) {
35
def name = publication.name
36
+ if (name in ['maven']) return true
37
+
38
def result = false
39
result = result | (name in ['jvm', 'js', 'metadata', 'kotlinMultiplatform'])
40
result = result | (project.ext.isLinuxHost && name == 'linuxX64')
0 commit comments