This should give us a set of mutually-consistent jars rather than picking up random, outdated pieces from Maven Central or wherever else I could find them. We now also have a single, central place where we set the Eclipse version that we're building against. Much, *much* cleaner.
16 lines
410 B
Groovy
16 lines
410 B
Groovy
sourceSets.main.java.srcDirs = ['src']
|
|
|
|
dependencies {
|
|
compile(
|
|
'eclipse-deps:org.eclipse.core.runtime:+',
|
|
'eclipse-deps:org.eclipse.equinox.common:+',
|
|
'eclipse-deps:org.eclipse.jdt.core:+',
|
|
'org.osgi:org.osgi.core:4.2.0',
|
|
project(':com.ibm.wala.cast'),
|
|
project(':com.ibm.wala.cast.java'),
|
|
project(':com.ibm.wala.core'),
|
|
project(':com.ibm.wala.shrike'),
|
|
project(':com.ibm.wala.util'),
|
|
)
|
|
}
|