mirror of https://github.com/apache/poi.git
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:
parent
09e464bb5f
commit
67b3e09618
|
@ -236,6 +236,14 @@ subprojects {
|
|||
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) {
|
||||
|
|
Loading…
Reference in New Issue