plugins { id 'com.github.hauner.jarTest' version '1.0.1' } sourceSets.test.java.srcDirs = ['harness-src'] dependencies { testCompile 'junit:junit:4.11' testCompile project(':com.ibm.wala.cast') testCompile project(':com.ibm.wala.cast.js') testCompile project(':com.ibm.wala.cast.js.rhino') testCompile project(':com.ibm.wala.core') testCompile project(':com.ibm.wala.shrike') testCompile project(':com.ibm.wala.util') testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test') testCompile project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests') } processTestResources { // TODO: figure out why we cannot get at tasks from ':com.ibm.wala.cast.js.test.data' // dependsOn project(':com.ibm.wala.cast.js.test.data').tasks.processTestResources }