2016-04-04 13 views
5

Sto usando gradle e sto cercando di aggiungere kotlin al mio progetto. Ma quando sto cercando di aggiungere il plugin kotlin per gradle non riesce a trovarlo.Plugin con id `kotlin` non trovato

apply plugin: 'groovy' 
apply plugin: 'kotlin' 

buidscript { 
    ext.kotlin_version = '1.0.1-2' 

    repositories { 
     jcenter() 
     mavenCentral() 
    } 

    dependencies { 
     classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.1-2' 
    } 
} 

repositories { 
    jcenter() 
} 

dependencies { 
    compile 'org.codehaus.groovy:groovy-all:2.4.6' 
    compile 'org.antlr:antlr4:4.5.3' 

    testCompile 'org.spockframework:spock-core:1.0-groovy-2.4' 
    testCompile 'junit:junit:4.12' 

    compile 'org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version' 

} 

ottengo questo errore

Caused by: org.gradle.api.plugins.UnknownPluginException: Plugin with id 'kotlin' not found. 

Qual è il problema?

risposta

9

Hai un errore di battitura. Dovrebbe essere

buildscript { 

invece di buidscript.

Problemi correlati