2015-02-10 00:38:40 +00:00
|
|
|
apply plugin: "groovy"
|
2015-06-27 17:31:44 +00:00
|
|
|
apply plugin: "application"
|
2015-02-10 00:38:40 +00:00
|
|
|
apply plugin: "maven"
|
|
|
|
|
|
|
|
group = "com.jdblabs"
|
2015-06-27 18:37:13 +00:00
|
|
|
version = "1.1"
|
2015-06-27 17:31:44 +00:00
|
|
|
mainClassName = "com.jdblabs.file.treediff.TreeDiff"
|
2015-02-10 00:38:40 +00:00
|
|
|
|
2015-06-26 23:24:33 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral() }
|
|
|
|
|
|
|
|
dependencies {
|
2015-06-27 17:31:44 +00:00
|
|
|
compile 'org.codehaus.groovy:groovy-all:2.4.3'
|
2015-06-26 23:24:33 +00:00
|
|
|
compile 'org.slf4j:slf4j-api:1.7.10'
|
|
|
|
compile 'ch.qos.logback:logback-core:1.1.2'
|
|
|
|
compile 'ch.qos.logback:logback-classic:1.1.2'
|
|
|
|
compile 'com.jdbernard:jdb-util:3.5'
|
|
|
|
compile 'commons-codec:commons-codec:1.10'
|
2015-06-27 15:45:20 +00:00
|
|
|
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
|
2015-06-26 23:24:33 +00:00
|
|
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|