2016-02-09 21:32:23 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'groovy'
|
|
|
|
apply plugin: 'ch.raffael.pegdown-doclet'
|
2016-02-09 23:45:18 +00:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
mainClassName = 'com.jdbernard.wdiwtlt.cli.CommandLineInterface'
|
2016-02-09 21:32:23 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile localGroovy()
|
|
|
|
compile 'ch.qos.logback:logback-classic:1.1.3'
|
|
|
|
compile 'ch.qos.logback:logback-core:1.1.3'
|
|
|
|
compile 'org.slf4j:slf4j-api:1.7.14'
|
|
|
|
compile 'com.offbytwo:docopt:0.6.0.20150202'
|
2016-02-10 15:53:12 +00:00
|
|
|
compile 'com.jdbernard:jdb-util:4.3'
|
|
|
|
compile 'jline:jline:2.12'
|
2016-02-09 23:45:18 +00:00
|
|
|
compile project(":wdiwtlt-core")
|
2016-03-10 16:49:01 +00:00
|
|
|
compile 'uk.co.caprica:vlcj:3.10.1'
|
2016-02-09 21:32:23 +00:00
|
|
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
|
2016-03-10 16:49:01 +00:00
|
|
|
runtime 'net.java.dev.jna:jna:4.2.1'
|
|
|
|
runtime 'net.java.dev.jna:jna-platform:4.2.1'
|
2016-02-09 21:32:23 +00:00
|
|
|
}
|