Skip to content

Commit

Permalink
Fix #163 - disable gmm
Browse files Browse the repository at this point in the history
  • Loading branch information
oshai committed Mar 4, 2021
1 parent 8295c09 commit b7d802d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.dokka.gradle.DokkaTask
import java.util.*

plugins {
kotlin("multiplatform") version "1.4.10"
kotlin("multiplatform") version "1.4.31"
id("com.jfrog.bintray") version "1.8.4"
id("com.jfrog.artifactory") version "4.17.2"
id("org.jetbrains.dokka") version "0.10.0"
Expand Down Expand Up @@ -35,6 +35,11 @@ tasks {
}
}

// see issue #163
tasks.withType<GenerateModuleMetadata> {
enabled = false
}

kotlin {
metadata {
mavenPublication {
Expand Down

0 comments on commit b7d802d

Please sign in to comment.