Add Gradle build script for a subproject that previously had none

This commit is contained in:
Ben Liblit 2017-12-18 12:23:21 -06:00
parent 25a52254f5
commit 8e5415e3db
3 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="testdata"/>
<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,12 @@
sourceSets.main {
java.srcDir 'source'
resources.srcDir 'testdata'
}
dependencies {
compile project(':com.ibm.wala.cast.java.ecj')
compile project(':com.ibm.wala.cast.java.test')
compile project(':com.ibm.wala.ide.tests')
compile 'org.eclipse.platform:org.eclipse.core.runtime:3.13.0'
compile 'org.osgi:org.osgi.core:4.2.0'
}

View File

@ -1,5 +1,5 @@
source.. = source/,\
data/
testdata/
output.. = bin/
bin.includes = META-INF/,\
.,\