J'ai le projet de Gradle le plus simple configuré en utilisant intellij pour Kotlin 1.2.10. Voici mon fichier 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"
}
Et j'ai une interface java simple:
public interface MyMath {
static int myAbs(int input) {
return Math.abs(input);
}
}
Lorsque j'importe cette interface et que j'essaie d'appeler la méthode myAbs
, elle échoue avec l'erreur suivante:
Error:(6, 12) Kotlin: Calls to static methods in Java interfaces are prohibited in JVM target 1.6. Recompile with '-jvm-target 1.8'
J'ai créé une application intellij kotlin et elle fonctionnait correctement. Est-ce un bug dans le nouveau plugin Kotlin Gradle?