It seems related to `Assertion failed: Duplicate b...
# intellij-plugins
m
It seems related to
Assertion failed: Duplicate bundled template New Kotlin Function Body.kt [jar:file:/Applications/IntelliJ%20IDEA%202017.3%20EAP.app/Contents/plugins/Kotlin/lib/kotlin-plugin.jar!/fileTemplates/code/New Kotlin Function Body.kt.ft, jar:file:/Users/m/Library/Caches/IntelliJIdea2017.3/plugins-sandbox/plugins/mockito-generator/lib/kotlin-plugin.jar!/fileTemplates/code/New Kotlin Function Body.kt.ft]
Is it my local env issue?
s
Looks like you bundled Kotlin Plugin inside your plugin, you should use compileOnly (provided) dependency. Take look at https://github.com/JetBrains/gradle-intellij-plugin This Gradle plugin helps with heavy dependency lifting
m
Oh.. Thanks. I'll try