sourceSets.test { java.srcDirs = ['src'] resources.srcDirs = ['testdata'] } dependencies { testCompile( 'junit:junit:4.12', project(':com.ibm.wala.cast.js.nodejs'), project(':com.ibm.wala.core'), ) } test { maxHeapSize = '800M' // fails with java.lang.OutOfMemoryError for unknown reasons exclude '**/NodejsRequireTargetSelectorResolveTest.class' }