Browse Source

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

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899161 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_3
Dominik Stadler 2 years ago
parent
commit
67b3e09618
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      build.gradle

+ 8
- 0
build.gradle View File

@@ -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) {

Loading…
Cancel
Save