Uploaded image for project: 'Maven Resources Plugin'
  1. Maven Resources Plugin
  2. MRESOURCES-281

allow different encodings for files inside the same resource-directory

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 3.2.0
    • None
    • filtering

    Description

      Currently each resource-directory has a single encoding, with the recent exception of properties (MRESOURCES-171).

      If you need to filter differently encoded files, this can become quite a hazzle: The only way (at least that I'm aware of) is to have different modules or non-resource directories as the source for copy-resources. Apart from bloating the pom, it also forces you to have related files at different locations if they are encoded differently.

       

      What I'm suggesting is to generalize what has been done for properties by allowing to override the <encoding> for specific files/patterns.

      Ideally this would be part of the resource-declaration but being able to configure the resources plugin accordingly would already help a lot:

      <configuration>
         <encodingOverrides>
             <encodingOverride>
                <encoding>UTF-16</encoding>
                <includes>**/*.myfile</includes>
             </encodingOverride>
             <encodingOverride>
                 <encoding>iso-latin-1</encoding>
                 <includes>**/*.other</includes>
             </encodingOverride>
         </encodingOverrides>
      </configuration>
      
      What do you think?

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              caroso-de Carsten Rohde
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated: