From 61c5beffe736785d9d5a54e053b8755330fac0c4 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 7 Aug 2017 17:33:56 -0700 Subject: [PATCH] Add Kotlin support to gradle. --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 6f22d47..1a408bc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,8 @@ +plugins { + id 'java' + id 'application' + id 'org.jetbrains.kotlin.jvm' version '1.1.3' +} apply plugin: 'java' apply plugin: 'application' @@ -7,6 +12,7 @@ repositories { dependencies { compile 'com.moandjiezana.toml:toml4j:0.7.1' + compile "org.jetbrains.kotlin:kotlin-stdlib-jre8" testCompile 'junit:junit:4.12' }