X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=build.gradle;h=d772187ebbd44403f1bc4622936d8b891650d741;hb=75dffc0a110405807d5e6a6dd9e0815299d894ad;hp=a7da6a9a275c059efb80d1ee87b9e69b15f403ac;hpb=d2e4eab3acb1d54c82bd37bfe94e25c43dcb3674;p=rhynodge.git diff --git a/build.gradle b/build.gradle index a7da6a9..d772187 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,5 @@ apply plugin: "java" +apply plugin: "war" apply plugin: "jacoco" apply plugin: "idea" @@ -14,6 +15,15 @@ version = "0.1" sourceCompatibility = 1.8 targetCompatibility = 1.8 +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath group: "org.ajoberstar", name: "gradle-git", version: "1.1.0" + } +} + repositories { mavenCentral() } @@ -28,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" @@ -42,6 +53,34 @@ task fatJar(type: Jar) { ) } from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } + from { sourceSets.generated.resources.srcDirs } with jar dependsOn test } + +task createVersion() { + sourceSets { + generated { + resources { + srcDir "src/generated/resources" + } + } + } + processResources.dependsOn(createVersion) +} + + +import org.ajoberstar.grgit.Grgit +createVersion << { + def gitRepo = Grgit.open(".") + version = gitRepo.describe() + new File("src/generated/resources").mkdirs() + new File("src/generated/resources/version.txt").withWriter() { it.write(version) } +} + +war { + classpath sourceSets.generated.output + dependsOn(test) +} + +/* vim: set ts=4 sw=4 et: */