You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2022/03/24 04:42:30 UTC

svn commit: r1899161 - /poi/trunk/build.gradle

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: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org