Added user-agent to jsoup posted link title query.

More code & comments cleanup.
This commit is contained in:
Erik C. Thauvin 2014-04-30 02:36:59 -07:00
parent 85ed19f259
commit b720927061
21 changed files with 544 additions and 604 deletions

View file

@ -67,6 +67,10 @@ compileJava {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
javadoc {
options.tags = ['created']
}
jar {
manifest.attributes('Main-Class': mainClassName,
'Class-Path': '. ./lib/' + configurations.compile.collect { it.getName() }.join(' ./lib/'))