Skip to content
Snippets Groups Projects
Commit f52282b6 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

apply plugin in try catch block

parent 1289a5a0
No related branches found
No related tags found
2 merge requests!619Production Release | nshmp-haz,!615Gradle Git Version Plugin
apply plugin: "com.palantir.git-version"
tasks.withType(JavaCompile) {
doFirst {
try {
apply plugin: "com.palantir.git-version"
def versionFile = new File("${projectDir}/src/main/resources/version/nshmp-haz-version.json")
new File(versionFile.getParent()).mkdirs()
def details = versionDetails()
......@@ -23,6 +24,7 @@ tasks.withType(JavaCompile) {
versionFile.write(groovy.json.JsonOutput.prettyPrint(json))
} catch (Exception e) {
println("Failed to create version file.")
throw new Exception(e)
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment