kotlin 1.2.10에 대해 intellij를 사용하여 구성된 가장 간단한 gradle 프로젝트가 있습니다. 다음은 내 build.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"
}
그리고 간단한 자바 인터페이스가 있습니다.
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 Gradle 플러그인의 버그입니까?