X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=build.gradle;h=d772187ebbd44403f1bc4622936d8b891650d741;hb=e76eb2e775937956010cabfc87fff91f3245a2db;hp=8984693e2c58fdee3c207ae8d0c590ec0e133705;hpb=02183a0d26e3783eaaa94ff65dd63e66a7e14adc;p=rhynodge.git diff --git a/build.gradle b/build.gradle index 8984693..d772187 100644 --- a/build.gradle +++ b/build.gradle @@ -38,6 +38,7 @@ dependencies { compile group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.1.2" compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.1.2" compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.1.2" + compile group: "com.google.inject", name: "guice", version: "4.0" testCompile group: "junit", name: "junit", version:"4.12" testCompile group: "org.hamcrest", name: "hamcrest-library", version:"1.3" @@ -52,6 +53,7 @@ task fatJar(type: Jar) { ) } from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } + from { sourceSets.generated.resources.srcDirs } with jar dependsOn test }