Hi, I tried with both intellij 2017.3.5 and the lates intellij 2018.1.2 to see if the message will disappear and resolve Kotlin issues. I am still getting the same error, and also looked heavily for other tickets related and done some of their advices but no luck.
here is my dependencies:
`buildscript {
ext.kotlin_version = ‘1.1.3’
repositories {
mavenCentral()
}
dependencies {
classpath “org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version”
classpath “org.jetbrains.kotlin:kotlin-allopen:$kotlin_version”
}
}
apply plugin: ‘kotlin’
apply plugin: ‘kotlin-spring’
repositories {
mavenCentral()
}
dependencies {
compile “org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version”
compile ‘com.github.salomonbrys.kotson:kotson:2.5.0’
compile project(“:client”)
}`