aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-04-18 00:14:00 -0700
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-04-18 00:14:00 -0700
commit2a30736db3ac5d065d9dd17f04aa10ca64e3d431 (patch)
tree0ea36808ae5bab95582722ec816b9796a6531ffd /build.gradle
parentdf25880dd91665c897d22fa43760d2dd8393b469 (diff)
downloadKotlinForForge-2a30736db3ac5d065d9dd17f04aa10ca64e3d431.tar.gz
KotlinForForge-2a30736db3ac5d065d9dd17f04aa10ca64e3d431.tar.bz2
KotlinForForge-2a30736db3ac5d065d9dd17f04aa10ca64e3d431.zip
Update 1.2.0
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle9
1 files changed, 7 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 20d3c4c..aa1db38 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,6 +2,7 @@ buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
maven { url = "https://maven.tterrag.com/" }
+ maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
jcenter()
mavenCentral()
}
@@ -11,14 +12,13 @@ buildscript {
}
}
plugins {
- 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.1.0'
+version = '1.2.0'
group = 'thedarkcolour.kotlinforforge'
archivesBaseName = 'kotlinforforge'
@@ -60,10 +60,15 @@ minecraft {
}
repositories {
+ mavenCentral()
maven {
name = "Yarn Mappings"
url = "https://maven.tterrag.com/"
}
+ maven {
+ name = "Kotlin Early Access"
+ url = "https://dl.bintray.com/kotlin/kotlin-eap"
+ }
}
dependencies {