Initial commit.

This commit is contained in:
Jonathan Bernard
2015-12-03 14:28:29 -06:00
commit ad1656aa32
4 changed files with 45 additions and 0 deletions

13
service/build.gradle Normal file
View File

@ -0,0 +1,13 @@
apply plugin: 'groovy'
apply plugin: 'war'
dependencies {
compile localGroovy()
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'org.slf4j:slf4j-api:1.7.10'
testCompile 'junit:junit:4.12'
runtime 'com.h2database:h2:1.4.185'
}