buildscript { repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.junit.platform:junit-platform-gradle-plugin:+" } } plugins { id "us.kirchmeier.capsule" version '1.0.2' id 'application' } apply plugin: 'kotlin' group 'online.anthonycicchetti' version '0.1.0' mainClassName = 'MainKt' repositories { mavenCentral() } dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" compile project(":common") testCompile commonJunitCompile testRuntime commonJunitRuntime } compileKotlin { kotlinOptions.jvmTarget = "1.8" } compileTestKotlin { kotlinOptions.jvmTarget = "1.8" } task fatCapsule(type: FatCapsule) { applicationClass 'MainKt' }