aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-03-15 15:29:12 -0700
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-03-15 15:29:12 -0700
commit9deb20a755528d1370cab429e6849cfc607780db (patch)
treea37fb494f0b35a2444fca66654db8d1f0ca60395 /build.gradle
parente881f3b56b904c16a488579380d5dceae828c1b2 (diff)
downloadKotlinForForge-9deb20a755528d1370cab429e6849cfc607780db.tar.gz
KotlinForForge-9deb20a755528d1370cab429e6849cfc607780db.tar.bz2
KotlinForForge-9deb20a755528d1370cab429e6849cfc607780db.zip
Update 1.1.0
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle14
1 files changed, 9 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index e8fc1ca..20d3c4c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,7 @@
buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
+ maven { url = "https://maven.tterrag.com/" }
jcenter()
mavenCentral()
}
@@ -10,14 +11,14 @@ buildscript {
}
}
plugins {
- id "org.jetbrains.kotlin.jvm" version "1.3.61"
+ id "org.jetbrains.kotlin.jvm" version "1.3.70"
id "com.github.johnrengelman.shadow" version "4.0.4"
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'kotlin'
-version = '1.0.1'
+version = '1.1.0'
group = 'thedarkcolour.kotlinforforge'
archivesBaseName = 'kotlinforforge'
@@ -27,7 +28,7 @@ tasks.build.dependsOn kotlinSourcesJar
tasks.build.dependsOn shadowJar
minecraft {
- mappings channel: 'snapshot', version: '20191213-1.14.3'
+ mappings channel: 'snapshot', version: '20200213-mixed-1.15.2'
runs {
client {
@@ -59,11 +60,14 @@ minecraft {
}
repositories {
-
+ maven {
+ name = "Yarn Mappings"
+ url = "https://maven.tterrag.com/"
+ }
}
dependencies {
- minecraft 'net.minecraftforge:forge:1.14.4-28.1.106'
+ minecraft 'net.minecraftforge:forge:1.15.2-31.1.14'
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: kotlin_version
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk7", version: kotlin_version