From 25a52254f535abe350214fb76c2dcb13a9305146 Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Mon, 18 Dec 2017 11:47:27 -0600 Subject: [PATCH] Add Gradle build script for a subproject that previously had none --- com.ibm.wala.cast.js.nodejs.test/.classpath | 2 ++ com.ibm.wala.cast.js.nodejs.test/build.gradle | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 com.ibm.wala.cast.js.nodejs.test/build.gradle diff --git a/com.ibm.wala.cast.js.nodejs.test/.classpath b/com.ibm.wala.cast.js.nodejs.test/.classpath index 8d8d85f14..5a961378b 100644 --- a/com.ibm.wala.cast.js.nodejs.test/.classpath +++ b/com.ibm.wala.cast.js.nodejs.test/.classpath @@ -1,5 +1,7 @@ + + diff --git a/com.ibm.wala.cast.js.nodejs.test/build.gradle b/com.ibm.wala.cast.js.nodejs.test/build.gradle new file mode 100644 index 000000000..7f109323f --- /dev/null +++ b/com.ibm.wala.cast.js.nodejs.test/build.gradle @@ -0,0 +1,10 @@ +sourceSets.main { + java.srcDir 'src' + resources.srcDir 'testdata' +} + +dependencies { + compile project(':com.ibm.wala.cast.js.nodejs') + compile project(':com.ibm.wala.core') + compile 'junit:junit:4.11' +}