timestamper/build.gradle
Jonathan Bernard 168d7cd03f Moved to gradle. FIXME: This is broken.
The JDB Util dependency has been upgraded to 3.4 from 2.0. This includes
backwords-incompatible changes in the LightOptionParser class used by this
project. I need to re-write that code to use the newer version of
LightOptionParser.
2015-02-05 00:54:06 -06:00

21 lines
512 B
Groovy

apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdblabs.timestamper"
version = "1.2"
repositories {
mavenLocal()
mavenCentral() }
dependencies {
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'com.martiansoftware:nailgun-server:0.9.1'
compile 'org.slf4j:slf4j-api:1.7.10'
compile 'com.jdbernard:jdb-util:3.4'
compile 'com.jdblabs.timestamper:timestamper-lib:2.1'
compile files('lib/jansi-1.12-SNAPSHOT.jar')
}