WALA/com.ibm.wala.cast.js/build.gradle

34 lines
684 B
Groovy
Raw Normal View History

2017-11-27 08:34:48 +00:00
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url "https://repo.eclipse.org/content/groups/releases/"
}
}
sourceSets {
main {
java {
srcDir 'source'
}
}
test {
java {
srcDir 'test'
}
}
}
dependencies {
compile project(':com.ibm.wala.util')
compile project(':com.ibm.wala.core')
compile project(':com.ibm.wala.shrike')
compile project(':com.ibm.wala.core.tests')
compile project(':com.ibm.wala.cast')
// https://mvnrepository.com/artifact/net.htmlparser.jericho/jericho-html
compile group: 'net.htmlparser.jericho', name: 'jericho-html', version: '3.2'
}