Re: How to disable DEBUG output from the Configuration Admin Service ?

2009-01-28 Thread Felix Meschberger
Hi, As of FELIX-903 [1] I have now added a configuration setting to limit the log output in the absence of a LogService. The property is called felix.cm.loglevel, which is an int value setting the maximum message level to actually log. This may be any number causing only messages whose level is lo

Export-Package header declaration for Felix Maven-Bund le-Plugin has unexpected behaviour

2009-01-28 Thread Florian Rampp
Hello! I'm using the Maven-Bundle-Plugin and having problems with specifying export-package and import-package. Since my package structure in java does not fit the default export-package (..*), I specify this on my own: org.apache.felix maven-bundle-plugin true

Re: configuration of bundle using web console

2009-01-28 Thread Carsten Ziegeler
Paulo Sergio wrote: > sorry to keep bothering you guys.. > > i tryed to install all the modules available on Sling (except the ones > started with Sling - ) on Felix, > but event after that i was not able to see the configurations of my module.. > > another issue is that on my felix instalation i

Re: Export-Package header declaration for Felix Maven-Bundle-Plugin has unexpected behaviour

2009-01-28 Thread Stuart McCulloch
2009/1/28 Florian Rampp > Hello! > > I'm using the Maven-Bundle-Plugin and having problems with specifying > export-package and import-package. > > Since my package structure in java does not fit the default export-package > (..*), I specify this on my own: > >org.apache.felix >m

Re: Maven bundle plugin: Is it possible to mark optional Maven dependencies to be imported with resolition=optional

2009-01-28 Thread Stuart McCulloch
2009/1/28 > Hi guys, > What about the following proposal: > 1. when the bundle plugin is building the classpath, for each artifact that > is marked as "optional" in the pom, it builds a list of all packages inside > the artifact jar and adds a corresponding import-package instructions with > th

Re: configuration of bundle using web console

2009-01-28 Thread Paulo Sergio
hi Carsten, here are my META-INF and OSGI-INF contents inside the META-INF i have the manifest.mf this is the content: Manifest-Version: 1.0 Export-Package: org.apache.felix.examples.dictionaryservice Private-Package: com.pauloslf.Server,com.pauloslf.Server.comma nds,com.pauloslf.Server.manager

Re: Export-Package header declaration for Felix Maven-Bundle-Plugin has unexpected behaviour

2009-01-28 Thread Arjun Panday
Florian, I believe that part of the answer to your problem is explained in section 3.5.6 "Exporting and Importing a Package" of the core OSGi spec, which states that "Bundles should import exported packages, allowing the resolver to substitute packages that contain interfaces and other shared

Re: Export-Package header declaration for Felix Maven-Bundle-Plugin has unexpected behaviour

2009-01-28 Thread Florian Rampp
Hello! Thank you for your help, it now works. For everybody, having similar problems, here is my maven-bundle-plugin configuration. Since the packages imported by my bundles are disjoint, I added ;-noimport:=true to Export-Package, but I will think more about whether this is good. deus.storag