Adds a gradle task to copy dependencies to be easily found by bootstrapper (#1661)

This commit is contained in:
ST0NEWALL
2019-09-28 11:48:52 -04:00
committed by Kyle
parent 18438626c4
commit ad2dd4a06f

View File

@@ -107,4 +107,10 @@ shadowJar {
exclude("net/runelite/injector/**")
}
task copyToLib(type: Copy) {
into "$buildDir/lib"
from configurations.runtime
}
tasks.build.dependsOn tasks.shadowJar
tasks.shadowJar.dependsOn tasks.copyToLib