aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-10-01 14:57:13 -0700
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-10-01 14:57:13 -0700
commit9a06bdb13ce55588b9f8dc28df132d7530742cac (patch)
treebe7c4a6cd5a19fe3891568c3e3be689bd1898a99 /README.md
parent6fdda20f1977c17ab45599b249094fe13821db09 (diff)
downloadKotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.tar.gz
KotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.tar.bz2
KotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.zip
Kotlin for Forge 1.6.1
Close #7
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 2 insertions, 11 deletions
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'
}
}
```