qwentynotarantino
06/30/2017, 10:58 AMbreandan
07/17/2017, 7:03 AMPersistentStateComponent
. Nothing seems to be calling loadState()
. Any ideas what I'm doing wrong? https://github.com/johnlindquist/AceJump/blob/master/src/main/kotlin/com/johnlindquist/acejump/config/AceConfig.ktDmitry Kandalov
08/14/2017, 11:23 PMnitrog42
08/17/2017, 8:09 AMyole
08/18/2017, 10:04 AMalec
09/13/2017, 3:37 PMyole
11/01/2017, 12:44 PMm
11/06/2017, 6:40 PMAssertion 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?nvinayshetty
01/20/2018, 7:29 AMjoscha.alisch
01/20/2018, 11:30 AMbuildscript {
ext.kotlin_version = '1.2.10'
repositories {
maven { url '<http://dl.bintray.com/jetbrains/intellij-plugin-service>' }
jcenter()
maven { url "<https://oss.sonatype.org/content/repositories/snapshots/>" }
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.intellij' version "0.2.17"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
intellij {
version 'LATEST-EAP-SNAPSHOT'
pluginName 'My Plugin'
}
repositories {
mavenCentral()
}
compileKotlin {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
Dmitry Kandalov
01/31/2018, 10:53 PMbreandan
02/04/2018, 5:17 PMdh44t
02/06/2018, 5:48 PMgalex
02/12/2018, 7:22 PMjtonic
03/01/2018, 6:57 AMdigitalsanctum
07/23/2018, 8:56 PMjw
08/09/2018, 4:04 AMtrevjones
08/09/2018, 4:35 AMIC-182.*
ultimate is IU-182.*
and studio is AI-182.*
based on what is listed in the readme here: https://github.com/JetBrains/gradle-intellij-plugin I would think you just need to set your type correctlyParshav
08/22/2018, 4:05 PMtrevjones
08/22/2018, 8:40 PMDmitry Kandalov
09/12/2018, 6:40 PMcfleming
09/19/2018, 12:36 PMClass 'kotlin.jvm.Throws' is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler
m
10/11/2018, 5:29 PMChris Cunningham
11/06/2018, 3:47 PMChris Cunningham
11/13/2018, 4:02 AMChris Cunningham
11/18/2018, 11:05 PMXmlSerializationException
when ever my application tries to save its settings. They type i am trying to use is not all that complex either, its just a data class contains a
MutableMap<String, MyOtherDataClass>
kasper.kondzielski
12/09/2018, 3:50 PMDmitry Kandalov
12/16/2018, 2:07 PMIDE settings -> Other settings -> My plugin settings
- type something in search dialog
- matching UI components are highlighted while typing, however, half second later my plugin settings entry disappears from the list of matching settingscfleming
01/10/2019, 9:57 PMGraeme
01/25/2019, 3:50 PMGraeme
01/25/2019, 3:50 PMDmitry Kandalov
01/26/2019, 9:56 PMGraeme
01/29/2019, 8:06 AMDmitry Kandalov
01/29/2019, 11:48 AMIDE Preferences -> Kotlin Compiler
settings with parameters as described here https://kotlinlang.org/docs/reference/compiler-plugins.html#using-in-cli