Fix accidental copying of entire subproject as test resource

This commit is contained in:
Ben Liblit 2018-02-08 10:27:12 -06:00
parent 90a947dad1
commit 2e04ac9838
1 changed files with 3 additions and 3 deletions

View File

@ -23,13 +23,13 @@ dependencies {
processTestResources {
def testdata = project(':com.ibm.wala.core.testdata')
dependsOn testdata.extractBcel
dependsOn testdata.verifyJavaCup
// TODO: something of what follows ends up copying the entire
// 'com.ibm.wala.core.testdata' directory!
from testdata.collectJLex
from testdata.collectTestData
from testdata.downloadJavaCup
from testdata.extractBcel
from files(testdata.extractBcel)[0]
from testdata.generateHelloHash
}