WALA/com.ibm.wala.cast.js.test/build.gradle

25 lines
726 B
Groovy
Raw Normal View History

plugins {
id 'com.github.hauner.jarTest' version '1.0.1'
}
sourceSets.test.java.srcDirs = ['harness-src']
2017-11-27 08:34:48 +00:00
dependencies {
testCompile(
'junit:junit:4.11',
project(':com.ibm.wala.cast'),
project(':com.ibm.wala.cast.js'),
project(':com.ibm.wala.cast.js.rhino'),
project(':com.ibm.wala.core'),
project(':com.ibm.wala.shrike'),
project(':com.ibm.wala.util'),
project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test'),
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
}