Add a target to extract all third-party libraries into directory build/runtime

This is used when testing with latest Apache POI locally, e.g.
when running mass-regression-testing

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899161 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2022-03-24 04:42:30 +00:00
parent 09e464bb5f
commit 67b3e09618
1 changed files with 8 additions and 0 deletions

View File

@ -236,6 +236,14 @@ subprojects {
source = "1.8" source = "1.8"
} }
} }
// helper-target to get a directory with all third-party libraries
// this is used for mass-regression-testing
task getDeps(type: Copy) {
from sourceSets.main.runtimeClasspath
into 'build/runtime/'
}
} }
tasks.withType(Jar) { tasks.withType(Jar) {