You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Peter Butkovic (Jira)" <ji...@apache.org> on 2021/02/10 21:49:00 UTC

[jira] [Created] (MSHADE-381) Introduction of YamlAppendingTransformer

Peter Butkovic created MSHADE-381:
-------------------------------------

             Summary: Introduction of YamlAppendingTransformer
                 Key: MSHADE-381
                 URL: https://issues.apache.org/jira/browse/MSHADE-381
             Project: Maven Shade Plugin
          Issue Type: Improvement
    Affects Versions: 3.2.4
            Reporter: Peter Butkovic


As documented in the official docs ([https://maven.apache.org/plugins/maven-shade-plugin/examples/resource-transformers.html#AppendingTransformer] ), there are following specific types of Appending Transformers: XmlAppendingTransformer and ResourceBundleAppendingTransformer.

 

I'd however need YamlAppendingTransformer capable of merging:

1.yaml
{code:java}
key1:
  propA: valA
{code}
2.yaml
{code:java}
key1:   
  propB: valB
{code}
into:
{code:java}
key1:  
 propA: valA
 propB: valB
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)