I get ``` * What went wrong: Execution failed for ...
# compiler
s
I get
Copy code
* What went wrong:
Execution failed for task ':generateMavenPluginDescriptor'.
> org.apache.maven.plugin.descriptor.InvalidPluginDescriptorException: No mojo definitions were found for plugin: com.bnorm.template:kotlin-ir-plugin-template.
j
There is no maven publish plugin so there is no publishToMavenLocal task
s
@Javier I have it
Copy code
plugins {
    kotlin("jvm") version "1.5.30" apply false
    id("org.jetbrains.dokka") version "1.4.32" apply false
    id("com.gradle.plugin-publish") version "0.16.0" apply false
    id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
    id("io.freefair.maven-plugin") version "3.1.0"
    `maven-publish`
}
I have added "id("maven-publish")". it changes nothing
i
I think you should add it in
kotlin-ir-plugin-gradle/build.gradle.kts
.