You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Steve R (Jira)" <ji...@apache.org> on 2019/12/31 17:15:00 UTC

[jira] [Commented] (MASSEMBLY-920) ContainerDescriptorHandler for MetaInf-Services breaks folder structure

    [ https://issues.apache.org/jira/browse/MASSEMBLY-920?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17006174#comment-17006174 ] 

Steve R commented on MASSEMBLY-920:
-----------------------------------

Ah yeah this is biting me too.

> ContainerDescriptorHandler for MetaInf-Services breaks folder structure
> -----------------------------------------------------------------------
>
>                 Key: MASSEMBLY-920
>                 URL: https://issues.apache.org/jira/browse/MASSEMBLY-920
>             Project: Maven Assembly Plugin
>          Issue Type: Bug
>    Affects Versions: 3.1.1
>            Reporter: Otavio Biasutti
>            Priority: Major
>         Attachments: massembly-920.zip
>
>
> I have my own jar-with-dependecies assembly and I need to use the MetaInf-Services ContainerDescriptorHandler to aggregate all services and avoid overriding.
> The plugin does not respect the folder structure inside META-INF/services.
> Camel is a good example of dependecy that can be used to reproduce the problem. It defines its services in a nested folder structure, as in:
> {quote}
> META-INF/services/org/apache/camel/TypeConverter
> {quote}
> What really happens is that the folder structure is indeed created but the TypeConverter file is moved to the root of the services, i.e. *META-INF/services*
> I had to patch the code and define a custom ContainerDescriptorHandler to fix the problem.
> The fix is straightforward. I simply inherited the provided implementation of MetaInfServiceHandler and coded an overriden version of the following method like this:
> {code}
>     @Override
>     protected String getOutputPathPrefix(final FileInfo fileInfo) {
>         return Paths.get(fileInfo.getName()).getParent().toString() + "/";
>     }
> {code}
> All services were properly aggreggated after that.
> This may be the best fix for several related bugs I found online, like this one here: https://stackoverflow.com/questions/37304195/camel-restlet-not-working-in-jar
> Cheer
> Otávio



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