Add Gradle build script for a subproject that previously had none

This commit is contained in:
Ben Liblit 2017-12-18 11:47:27 -06:00
parent f41baeb0f8
commit 25a52254f5
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="testdata"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin"/>

View File

@ -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'
}