aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
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 /build.gradle
parent6fdda20f1977c17ab45599b249094fe13821db09 (diff)
downloadKotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.tar.gz
KotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.tar.bz2
KotlinForForge-9a06bdb13ce55588b9f8dc28df132d7530742cac.zip
Kotlin for Forge 1.6.1
Close #7
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 4f82dcf..ccff79b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,7 +22,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.dokka'
-version = "1.6.0"
+version = "1.6.1"
group = 'thedarkcolour.kotlinforforge'
archivesBaseName = 'kotlinforforge'
@@ -89,6 +89,9 @@ dependencies {
compile group: "org.jetbrains", name: "annotations", version: annotations_version
compile group: "org.jetbrains.kotlinx", name: "kotlinx-coroutines-core", version: coroutines_version
compile group: "org.jetbrains.kotlinx", name: "kotlinx-coroutines-jdk8", version: coroutines_version
+
+ // Tests
+ testImplementation 'junit:junit:4.11'
}
shadowJar {