diff --git a/build.gradle b/build.gradle index 0bce02a..e538ddf 100644 --- a/build.gradle +++ b/build.gradle @@ -115,6 +115,17 @@ springBoot { ] } +processResources { + doLast { + copy { + from('build/resources/main/application.yaml') { + rename 'application.yaml', 'mxisd.yaml' + } + into 'build/resources/main' + } + } +} + task buildDeb(dependsOn: build) { doLast { def v = gitVersion()