Add Gradle build script for a subproject that previously had none

This commit is contained in:
Ben Liblit 2017-12-18 12:24:02 -06:00
parent 209c1d25c6
commit 2716731357
2 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="data"/>
<classpathentry kind="src" path="source"/>
<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,13 @@
sourceSets.main {
java.srcDir 'source'
resources.srcDir 'data'
}
dependencies {
compile project(':com.ibm.wala.core')
compile project(':com.ibm.wala.core.tests')
compile project(':com.ibm.wala.dalvik')
compile 'com.google.android.tools:dx:1.7'
compile 'junit:junit:4.11'
compile 'org.osgi:org.osgi.core:4.2.0'
}