summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index ed53f02..3618f26 100644
--- a/build.gradle
+++ b/build.gradle
@@ -148,7 +148,7 @@ tasks.register('copyJar', Copy) {
//copy jar from build/libs to the forge mod folder
//from shadowJar //we want the über version, not the small one
- from reobfJar
+ from project.jar
into modDir
}
@@ -164,3 +164,8 @@ publishing {
}
}
}
+
+build {
+ //dependsOn shadowJar, reobfShadowJar
+ finalizedBy copyJar
+} \ No newline at end of file