]> source.dussan.org Git - poi.git/commitdiff
Move getDeps() out of javadoc-block and include it in jenkins-target
authorDominik Stadler <centic@apache.org>
Thu, 16 Jun 2022 14:52:45 +0000 (14:52 +0000)
committerDominik Stadler <centic@apache.org>
Thu, 16 Jun 2022 14:52:45 +0000 (14:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1901978 13f79535-47bb-0310-9956-ffa450edef68

build.gradle

index 9db58dd66e129cd86258adc9e9c9d2e168c97ef8..088a933da00a4a4ecc2660c01654938c2e94d95a 100644 (file)
@@ -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 {