aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-02-01 21:09:45 +0100
committer zaaarf <zaaarf@proton.me>2023-02-01 21:09:45 +0100
commit7ebbb991d2c873dfd8a06d871b6d2fed4fb19ca9 (patch)
tree6be7060e09c62556e73bbb636cc502a307093a57 /build.gradle
parent06e8d987073cee473da1832f045f64bafe2aecf4 (diff)
fix: forgot to actually call copyJar
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