aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-01-01 12:19:48 -0800
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2020-01-01 12:19:48 -0800
commite881f3b56b904c16a488579380d5dceae828c1b2 (patch)
treecd662e20f4082c69ed69d81e1e60f83a086b18f7 /build.gradle
parent77979e454e8acd6dd2ab6f4fe9ee186ec644c320 (diff)
downloadKotlinForForge-e881f3b56b904c16a488579380d5dceae828c1b2.tar.gz
KotlinForForge-e881f3b56b904c16a488579380d5dceae828c1b2.tar.bz2
KotlinForForge-e881f3b56b904c16a488579380d5dceae828c1b2.zip
Update 1.0.1
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 363c8c3..e8fc1ca 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,7 +17,7 @@ plugins {
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'kotlin'
-version = '1.0.0'
+version = '1.0.1'
group = 'thedarkcolour.kotlinforforge'
archivesBaseName = 'kotlinforforge'
@@ -113,4 +113,8 @@ compileKotlin {
freeCompilerArgs = ["-Xinline-classes"]
jvmTarget = '1.8'
}
+ // Required to run in dev environment
+ copy {
+ from "$buildDir/classes/kotlin/main" into "$buildDir/classes/java/main"
+ }
} \ No newline at end of file