Re: OSGi and Git - what release process, how many repos?

2014-08-12 Thread Bulu
Hi Paul, hi all Do I understand correctly, that your bundles have different (semantic) version numbers, but are always tagged all at the same time? Regarding Git though, I'm still confused. Carsten Ziegler advocates the one repo - one bundle. Which certainly makes sense, for separate bundle r

Re: OSGi and Git - what release process, how many repos?

2014-08-12 Thread Ferry Huberts
On 12/08/14 11:48, Bulu wrote: Hi Paul, hi all Do I understand correctly, that your bundles have different (semantic) version numbers, but are always tagged all at the same time? Regarding Git though, I'm still confused. Carsten Ziegler advocates the one repo - one bundle. Which certainly mak

Re: OSGi and Git - what release process, how many repos?

2014-08-12 Thread Paul Bakker
Hi Philipp, "Do I understand correctly, that your bundles have different (semantic) version numbers, but are always tagged all at the same time?" Yes, that's right. Our product version is the tag in Git on the whole workspace that represents the set of bundles that gets deployed in production. Int

Re: Any known frame problems with iPOJO manipulator 1.12.0 and Java 8?

2014-08-12 Thread Michael Hoppe
Hi Clement, I already used a classpathref in the ipojo target. But in the lib directory (classpath) I copied only needed libraries like iPojo libs, Logback libs etc. The solution is: - The classpathref in the ipojo target must point to a directory with the bnd output (= ipojo input directory). -

maven-bundle-plugin 2.5.0 and split packages

2014-08-12 Thread Davis,Joshua
Does anyone know why with maven-bundle-plugin 2.5.0 the split packages aren't working anymore? With maven-bundle-plugin 2.4.0 the manifest is generated like this.. org.eclipse.swt.events, org.eclipse.swt.layout, org.eclipse.swt.widgets, org.eclipse.ui;ui.workbench=split, org.eclipse.ui.themes O

Felix reset cache dir

2014-08-12 Thread rcbandit
I found this topic about Felix cache http://stackoverflow.com/questions/3165528/disabling-cache-in-apache-felix Can you give me some example how I can use below code because I can't find configurationProperties. configurationProperties.setProperty(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRA

Re: Felix reset cache dir

2014-08-12 Thread Neil Bartlett
“configurationProperties” (it doesn’t have to be called that) is a Map that should be passed to the newFramework method of org.osgi.framework.launch.FrameworkFactory. The instance of FrameworkFactory can be found using java.util.ServiceLoader. Regards, Neil On 12 August 2014 at 22:37:02, rcba