我使用 intellij 为 kotlin 1.2.10配置了最简单的 gradle 项目:
buildscript {
ext.kotlin_version = '1.2.10'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
group 'com.ali'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
我有一个简单的 Java 界面:
public interface MyMath {
static int myAbs(int input) {
return Math.abs(input);
}
}
当我导入这个接口并尝试调用 myAbs
方法时,它失败了,出现了这个错误:
Error:(6, 12) Kotlin: Calls to static methods in Java interfaces are prohibited in JVM target 1.6. Recompile with '-jvm-target 1.8'
我已经创建了一个 intellij Kotlin 应用程序,它工作正常。这是一个新的 Kotlin 梯度插件的错误吗?