Hello, I want to populate the system repository of a custom distribution. The documentation at https://karaf.apache.org/manual/latest/developers-guide/custom-distribution.html states: <installedFeature>baz</installedFeature> This will result in all the bundles in the feature being installed in the "system" internal repository. Therefore at runtime the feature may be installed without access to external repositories. You can use feature_name or feature_name/feature_version formats.
This is in general exactly what I want, but I do not want to name every feature. I would like to populate the system repository with all bundles of a kar (or feature) dependency of type runtime. So not using one dependency and set installFeature for every feature in that dependency, but using installFeature with the dependency, so all bundles of all features of that dependency are added to the system repo. Is this possible?
