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
This commit is contained in:
Dominik Stadler 2022-06-16 14:52:45 +00:00
parent 2efd5f1143
commit 843f5df1db
1 changed files with 7 additions and 7 deletions

View 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 {