Sfoglia il codice sorgente

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 anni fa
parent
commit
67b3e09618
1 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  1. 8
    0
      build.gradle

+ 8
- 0
build.gradle Vedi 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…
Annulla
Salva