Tôi có dự án gradle đơn giản nhất được định cấu hình bằng intellij cho kotlin 1.2.10. Đây là tệp build.gradle của tôi:
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"
}
Và tôi có một giao diện java đơn giản:
public interface MyMath {
static int myAbs(int input) {
return Math.abs(input);
}
}
Khi tôi nhập giao diện này và thử gọi myAbs
phương thức, nó không thành công với lỗi này:
Error:(6, 12) Kotlin: Calls to static methods in Java interfaces are prohibited in JVM target 1.6. Recompile with '-jvm-target 1.8'
Tôi đã tạo một ứng dụng intellij kotlin và nó hoạt động bình thường. Nó có phải là một lỗi trong plugin Kotlin gradle mới không?