group 'net.corda' version '0.7-SNAPSHOT' buildscript { ext.kotlin_version = '1.0.6' repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'java' apply plugin: 'kotlin' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" testCompile group: 'junit', name: 'junit', version: '4.11' // TornadoFX: A lightweight Kotlin framework for working with JavaFX UI's. compile 'no.tornado:tornadofx:1.5.7' }