We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to have a support for dumb merging YAML files:
YAML files can consist of multiple parts separated by --- so what we need is just a AppendingTransformer which would append new line and ---
---
see https://github.com/johnrengelman/shadow/blob/master/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/AppendingTransformer.groovy#L53
The text was updated successfully, but these errors were encountered:
as a current workaround is
append 'application.yml'
this obviously works only if you have full control of the YAML files
Sorry, something went wrong.
ApplicationYamlTransformer
separator
AppendingTransformer
thanks you
Successfully merging a pull request may close this issue.
It would be nice to have a support for dumb merging YAML files:
YAML files can consist of multiple parts separated by
---
so what we need is just a AppendingTransformer which would append new line and---
see https://github.com/johnrengelman/shadow/blob/master/src/main/groovy/com/github/jengelman/gradle/plugins/shadow/transformers/AppendingTransformer.groovy#L53
The text was updated successfully, but these errors were encountered: