From 4086283b41e16bc2d9424a80333dbc27ec9432fc Mon Sep 17 00:00:00 2001 From: badlogic Date: Sun, 14 Dec 2014 12:37:27 +0100 Subject: [PATCH] updated to latest Kotlin. You'll need to update the IDEA Kotlin plugin to the latest, and invalidate the IDEA cache (File -> Invalidate Caches) --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index becd877..f9b15d4 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:0.8.11' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:0.9.976' } } @@ -15,7 +15,7 @@ repositories { } dependencies { - compile 'org.jetbrains.kotlin:kotlin-stdlib:0.8.11' + compile 'org.jetbrains.kotlin:kotlin-stdlib:0.9.976' } project.ext.mainClassName = "chip8.Chip8Package"