<https://github.com/square/sqldelight/blob/master/...
# multiplatform
a
https://github.com/square/sqldelight/blob/master/gradle/gradle-mvn-mpp-push.gradle
Copy code
afterEvaluate {
  // Alias the task names we use elsewhere to the new task names.
  tasks.create('install').dependsOn('publishKotlinMultiplatformPublicationToMavenLocal')
}

apply from: "$rootDir/gradle/gradle-mvn-mpp-push.gradle"

publishing {
  publications.all {
    // Rewrite all artifacts from using the project name to just 'runtime'.
    artifactId = artifactId.replace(project.name, 'runtime')
  }
}
for gradle 4.10.2
👍 1