Properly handle default config file when running as systemd/sysv daemon

This commit is contained in:
Maxime Dor
2017-09-13 02:47:25 +02:00
parent 02c5523d6d
commit 84afb86b77

View File

@@ -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()