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

30 lines
717 B
Groovy

apply plugin: 'java'
repositories {
mavenCentral()
maven {
url "https://repo.eclipse.org/content/groups/releases/"
}
}
sourceSets {
main {
java {
srcDir 'src'
}
}
}
dependencies {
compile project(':com.ibm.wala.util')
compile project(':com.ibm.wala.cast')
compile project(':com.ibm.wala.cast.js')
compile project(':com.ibm.wala.cast.js.rhino.test')
compile project(':com.ibm.wala.cast.test')
compile project(':com.ibm.wala.cast.js.test')
compile project(':com.ibm.wala.core.tests')
// https://mvnrepository.com/artifact/nu.validator.htmlparser/htmlparser
compile group: 'nu.validator.htmlparser', name: 'htmlparser', version: '1.4'
}