blob: 5c1cc3985fe9c87c7f127a18cdbc1a157805111c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}
|