diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 13 |
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 +} + |