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/06/16 14:52:46 UTC

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

Author: centic
Date: Thu Jun 16 14:52:45 2022
New Revision: 1901978

URL: http://svn.apache.org/viewvc?rev=1901978&view=rev
Log:
Move getDeps() out of javadoc-block and include it in jenkins-target

Modified:
    poi/trunk/build.gradle

Modified: poi/trunk/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1901978&r1=1901977&r2=1901978&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Thu Jun 16 14:52:45 2022
@@ -235,14 +235,13 @@ 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/'
-        }
+    // 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) {
@@ -460,6 +459,7 @@ subprojects {
     jenkins.dependsOn javadoc
     jenkins.dependsOn jacocoTestReport
     jenkins.dependsOn rat
+    jenkins.dependsOn getDeps
 
     publishing {
         publications {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org