You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Łukasz Dywicki (JIRA)" <ji...@apache.org> on 2015/05/26 15:42:21 UTC

[jira] [Commented] (KARAF-3745) Install KARs mojo does not populate feature repositories

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

Łukasz Dywicki commented on KARAF-3745:
---------------------------------------

Issue was coming from fact that framework kar was unpacked *after* all features were installed meaning that framework features.cfg was overriding already existing configuration which was valid. Solution for this is to make framework kar first in dependency list:
{code}
        <dependency>
            <groupId>org.apache.karaf.features</groupId>
            <artifactId>framework</artifactId>
            <version>${karaf.version}</version>
            <type>kar</type>
        </dependency>
{code}

> Install KARs mojo does not populate feature repositories
> --------------------------------------------------------
>
>                 Key: KARAF-3745
>                 URL: https://issues.apache.org/jira/browse/KARAF-3745
>             Project: Karaf
>          Issue Type: Bug
>    Affects Versions: 3.0.3
>            Reporter: Łukasz Dywicki
>            Assignee: Łukasz Dywicki
>
> When custom boot features are specified maven plugin does not update org.apache.karaf.features.cfg to include origin repositories producing a malfunctioning assembly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)