diff options
author | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2020-09-10 10:26:16 -0700 |
---|---|---|
committer | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2020-09-10 10:26:16 -0700 |
commit | 37bbbf0307a2fec29d5d1763cbc5f1b910def7e7 (patch) | |
tree | 830410ab4e56864a55a6f70d1d2f083a244204b0 /build.gradle | |
parent | f08c792c00cce1e01282d932ea8ad842a12bf29c (diff) | |
download | KotlinForForge-37bbbf0307a2fec29d5d1763cbc5f1b910def7e7.tar.gz KotlinForForge-37bbbf0307a2fec29d5d1763cbc5f1b910def7e7.tar.bz2 KotlinForForge-37bbbf0307a2fec29d5d1763cbc5f1b910def7e7.zip |
Update to Kotlin for Forge 1.5.0
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 46cdb16..d3fda5f 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,6 @@ buildscript { repositories { maven { url = 'https://files.minecraftforge.net/maven' } maven { url = "https://maven.tterrag.com/" } - maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" } maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" } jcenter() mavenCentral() @@ -14,6 +13,7 @@ buildscript { classpath group: 'com.wynprice.cursemaven', name: 'CurseMaven', version: '2.1.5' } } + plugins { id "com.github.johnrengelman.shadow" version "4.0.4" } @@ -22,7 +22,7 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'kotlin' apply plugin: 'org.jetbrains.dokka' -version = "1.4.1" +version = "1.5.0" group = 'thedarkcolour.kotlinforforge' archivesBaseName = 'kotlinforforge' @@ -32,7 +32,7 @@ tasks.build.dependsOn kotlinSourcesJar tasks.build.dependsOn shadowJar minecraft { - mappings channel: 'snapshot', version: '20200213-mixed-1.15.2' + mappings channel: 'snapshot', version: '20200723-1.16.1' runs { client { @@ -80,7 +80,7 @@ repositories { } dependencies { - minecraft 'net.minecraftforge:forge:1.15.2-31.2.5' + minecraft 'net.minecraftforge:forge:1.16.2-33.0.22' compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: kotlin_version compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk7", version: kotlin_version |