From 67b3e09618538eb3405875227032f1d8641966e7 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Thu, 24 Mar 2022 04:42:30 +0000 Subject: [PATCH] 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 --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index b3fe4ce0b3..e659737efd 100644 --- a/build.gradle +++ b/build.gradle @@ -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) { -- 2.39.5