aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorHacktheTime <l4bg0jb7@duck.com>2023-10-14 17:00:53 +0200
committerHacktheTime <l4bg0jb7@duck.com>2023-10-14 17:00:53 +0200
commit2823095542479568ec6d8d1624596e884bea0582 (patch)
tree099f2ebe75556061ba49ae948b21f83c6a35381c /build.gradle
parent77fb80356b42260a95610aa5971d2b03d8d30e1d (diff)
downloadBBsentials-2823095542479568ec6d8d1624596e884bea0582.tar.gz
BBsentials-2823095542479568ec6d8d1624596e884bea0582.tar.bz2
BBsentials-2823095542479568ec6d8d1624596e884bea0582.zip
more changes (fixes)
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..5c1cc39
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,13 @@
+apply plugin: 'java'
+
+repositories {
+ jcenter()
+}
+
+task copyJars(type: Copy) {
+ from project(":forge").fileTree("build/libs") // Copy JARs from the :forge subproject
+ into file("$rootDir/build/libs") // Copy them to the global output directory
+ from project(":fabric").fileTree("build/libs") // Copy JARs from the :fabric subproject
+ into file("$rootDir/build/libs") // Copy them to the global output directory
+}
+