util-classes/build.gradle

20 lines
360 B
Groovy
Raw Normal View History

2015-02-05 05:26:58 +00:00
apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdbernard"
2015-11-14 06:25:30 +00:00
version = "4.1"
2015-02-05 05:26:58 +00:00
repositories {
2015-11-14 06:25:30 +00:00
mavenLocal()
mavenCentral()
}
2015-02-05 05:26:58 +00:00
dependencies {
2015-11-14 06:25:30 +00:00
compile localGroovy()
2015-02-05 05:26:58 +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'
testCompile 'junit:junit:4.12'
}