I have the ```kotlin { targets { jvm() ...
# multiplatform
d
I have the
Copy code
kotlin {
  targets {
    jvm()
    ios()
  }
}
and
maven-publish
plugin applied. According to documentation I should have
publishAllPublicationsToMavenLocal
as well as
publishJvm...
and
publishIos...
tasks. But for some reason I have only
publishJvmToMavenLocal
task. Is there something I need to do to enable other ones?