I was looking in the wrong way, have it working no...
# gradle
m
I was looking in the wrong way, have it working now using
Copy code
buildscript {
    ext {
        kotlinVersion = "1.2.0-rc-39"
    }
    repositories {
        jcenter()
        mavenCentral()
        maven { url "<http://dl.bintray.com/kotlin/kotlin-eap-1.2>" }

    }
    dependencies {
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
    }
}

apply plugin: "kotlin"