Initial commit: .gitignore and build.gradle.

This commit is contained in:
Jonathan Bernard 2015-02-17 16:45:18 -06:00
commit f2dc674181
2 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
build/
.gradle/

18
build.gradle Normal file
View File

@ -0,0 +1,18 @@
apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdbernard"
version = "2.0"
repositories {
mavenLocal()
mavenCentral() }
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.6'
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'
}