Re: materialize bundles?

2017-05-20 Thread Jean-Baptiste Onofré
Hi Scott, it's here: http://repo.maven.apache.org/maven2/org/apache/karaf/apache-karaf-minimal/ I will update the download page with it too. Regards JB On 05/19/2017 05:04 PM, Scott Lewis wrote: On 5/18/2017 10:36 PM, Christian Schneider wrote: karaf-minimal is just a smaller distro then

Re: materialize bundles?

2017-05-19 Thread Scott Lewis
On 5/18/2017 10:36 PM, Christian Schneider wrote: karaf-minimal is just a smaller distro then the normal karaf. It is released for each version of karaf. Thanks Christian. Where is the karaf-minimal distro available? I couldn't find it on the normal download pages. So while debugging you

Re: materialize bundles?

2017-05-18 Thread Christian Schneider
bundle:watch * is also very useful. See http://karaf.apache.org/manual/latest/#_watch So while debugging you can do mvn install on the single project after making changes to it. Karaf will then automatically updated the bundle(s) you built. This even works without disconnecting the debugger. So

Re: materialize bundles?

2017-05-18 Thread Christian Schneider
karaf-minimal is just a smaller distro then the normal karaf. It is released for each version of karaf. I guess Guillaume pointed you to this as an example of how to create your own custom distro. There is no support to start karaf with a target platform. In practice debugging karaf distributions

Re: materialize bundles?

2017-05-18 Thread Scott Lewis
One more question: The pom you pointed me to: https://github.com/apache/karaf/blob/master/assemblies/apache-karaf-minimal/pom.xml#L102-L148 Seems to be the 'karaf minimal' or 'karaf boot' (not sure if these are the same thing), but the version appears to be 4.2...which is not out yet.

Re: materialize bundles?

2017-05-18 Thread Scott Lewis
On 5/18/2017 3:26 PM, Guillaume Nodet wrote: The karaf maven plugin is perfectly suited to create custom distributions. We do use it to create the karaf official distributions, so unless something is missing, I'd suggest having a look at it. See for example:

Re: materialize bundles?

2017-05-18 Thread Guillaume Nodet
The karaf maven plugin is perfectly suited to create custom distributions. We do use it to create the karaf official distributions, so unless something is missing, I'd suggest having a look at it. See for example:

Re: materialize bundles?

2017-05-18 Thread Scott Lewis
On 5/17/2017 11:24 PM, Guillaume Nodet wrote: Not really. What would be the use of such a directory ? It could be used to develop to and package custom distributions that are based upon Karaf and other projects...for example OpenHab. Using that as the deploy folder for a newly created

Re: materialize bundles?

2017-05-18 Thread Guillaume Nodet
Not really. What would be the use of such a directory ? Using that as the deploy folder for a newly created instance ? You'd loose some information such as configurations, start levels, etc... 2017-05-18 0:55 GMT+02:00 Scott Lewis : > Is there any easy way (e.g. console or

materialize bundles?

2017-05-17 Thread Scott Lewis
Is there any easy way (e.g. console or mvn command) to materialize all the bundles/versions in a given running instance of Karaf and put them as jars into a target directory?