diff options
author | Dominik Stadler <centic@apache.org> | 2022-06-16 14:52:45 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2022-06-16 14:52:45 +0000 |
commit | 843f5df1dbaacf77305f7c29d5952481338db3a4 (patch) | |
tree | e51116e50a59445211813f2b3c2d6842971925fe /build.gradle | |
parent | 2efd5f114342b2b9b8d6184e36aeb8e8015d2347 (diff) | |
download | poi-843f5df1dbaacf77305f7c29d5952481338db3a4.tar.gz poi-843f5df1dbaacf77305f7c29d5952481338db3a4.zip |
Move getDeps() out of javadoc-block and include it in jenkins-target
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1901978 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle index 9db58dd66e..088a933da0 100644 --- a/build.gradle +++ b/build.gradle @@ -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 { |