Skip to content

Instantly share code, notes, and snippets.

@anhldbk
Last active August 29, 2015 14:26
Show Gist options
  • Save anhldbk/f74e7f00c2f66ffd5393 to your computer and use it in GitHub Desktop.
Save anhldbk/f74e7f00c2f66ffd5393 to your computer and use it in GitHub Desktop.
group 'TeeRunner'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
sourceSets.main.java.srcDirs = ['src']
mainClassName = "com.bigsonata.tee.Runner"
sourceCompatibility = 1.5
repositories {
flatDir {
dirs 'libs'
}
mavenCentral()
}
dependencies {
compile 'edu.uci.ics:crawler4j:4.1'
compile fileTree(dir: 'libs', include: '*.jar')
testCompile group: 'junit', name: 'junit', version: '4.11'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment