buildscript { ext.kotlin_version = '1.1.60' ...
# gradle
g
buildscript { ext.kotlin_version = '1.1.60' ext.tornadofx_version = '1.7.8' repositories { mavenCentral() jcenter() } dependencies { classpath "org.jetbrains.kotlinkotlin gradle plugin$kotlin_version" classpath 'com.github.jengelman.gradle.pluginsshadow1.2.3' classpath 'no.tornadofxlauncher gradle plugin1.0.16' } } apply plugin: 'kotlin' apply plugin: 'application' apply plugin: 'com.github.johnrengelman.shadow' apply plugin: 'no.tornado.fxlauncher' repositories { mavenLocal() mavenCentral() } dependencies { compile "org.jetbrains.kotlinkotlin stdlib$kotlin_version" compile "no.tornadotornadofx$tornadofx_version" compile 'org.controlsfxcontrolsfx8.40.12' compile "org.apache.commonscommons dbcp22.1.1" compile 'com.google.guavaguava23.5-jre' }
d
Try looking up docs on each dependecy (or in sample code..) to see if youre using the right repositories (where the libs a retrieved from), theres more repos out there than mavenCentral... and the buildscript ones dont help for the app ones...