Skip to content
Snippets Groups Projects
app-version.gradle 870 B
apply plugin: "com.palantir.git-version"

tasks.withType(JavaCompile) {
  doFirst {
    def versionFile = new File("${projectDir}/src/main/resources/version/nshmp-ws-version.json")
    new File(versionFile.getParent()).mkdirs()

    try {
      def details = versionDetails()
      def ciProjectUrl = System.getenv("CI_PROJECT_URL")
      def versionInfo = [
        gitHash:  details.gitHashFull,
        projectName: project.name,
        url: ciProjectUrl ? ciProjectUrl : "git config --get remote.origin.url".execute().text.replace("\n", ""),
        version: details.version,
      ]
      def json = groovy.json.JsonOutput.toJson(versionInfo)
      versionFile.write(groovy.json.JsonOutput.prettyPrint(json))
    } catch (Exception e) {
      println("Failed to create version file. Writing blank file.")
      println(e)
      versionFile.write('{}')
    }
  }
}