Author: centic
Date: Thu Mar 24 04:42:30 2022
New Revision: 1899161

URL: http://svn.apache.org/viewvc?rev=1899161&view=rev
Log:
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

Modified:
    poi/trunk/build.gradle

Modified: poi/trunk/build.gradle
URL: 
http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1899161&r1=1899160&r2=1899161&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Thu Mar 24 04:42:30 2022
@@ -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) {



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to