From 9a06bdb13ce55588b9f8dc28df132d7530742cac Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:57:13 -0700 Subject: Kotlin for Forge 1.6.1 Close #7 --- README.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8d8f2f6..ae7fab5 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,8 @@ git clone https://github.com/thedarkcolour/KotlinModdingSkeleton.git To implement in an existing project, paste the following into your build.gradle: ```groovy buildscript { - repositories { - // For early access Kotlin versions - maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" } - } dependencies { - // Make sure to use the correct version - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0-rc" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10" } } @@ -38,16 +33,12 @@ repositories { dependencies { // Use the latest version of KotlinForForge - implementation 'thedarkcolour:kotlinforforge:1.4.0' + implementation 'thedarkcolour:kotlinforforge:1.7.0' } compileKotlin { - // Needed if you use Forge.kt - // and Kotlin 1.4 language features kotlinOptions { jvmTarget = '1.8' - languageVersion = '1.4' - apiVersion = '1.4' } } ``` -- cgit