[SOLVED] Re: Features validation: cannot find wrap

2016-02-03 Thread Raman Gupta
Got this figured out with some help on IRC from jbonofre. For future posterity, the solution was to 1) add the framework to the verify : org.apache.karaf.features:framework framework 2) add the framework feature as a descriptor 3) ensure the org.apache.karaf.features.framework kar artifact

Re: [SOLVED] Re: Features validation: cannot find wrap

2016-02-03 Thread Jean-Baptiste Onofré
Thanks for the update Raman, it could help other users ;) Regards JB On 02/03/2016 09:04 AM, Raman Gupta wrote: Got this figured out with some help on IRC from jbonofre. For future posterity, the solution was to 1) add the framework to the verify : org.apache.karaf.features:framework

System update?

2016-02-03 Thread Leschke, Scott
Kind of a curiosity question. Is it possible to update a running karaf install in whole. I don't see anything offhand. I had hoped there might be something like a system:update or system:framework -update.

Re: System update?

2016-02-03 Thread Jean-Baptiste Onofré
Hi Scott, Most of the core features can be update on the fly, however, the low layers (like framework) is really tricky. system:update sounds like a good idea, but not sure the safest way to implement that ;) Regards JB On 02/03/2016 04:34 PM, Leschke, Scott wrote: Kind of a curiosity

Re: System update?

2016-02-03 Thread Jean-Baptiste Onofré
Did you take a look on http://karaf.apache.org/manual/latest/update-notes.html ? Even if it's not perfect, it provides some ideas. Regards JB On 02/03/2016 04:50 PM, Leschke, Scott wrote: Just to clarify, I didn't mean to imply that the changes would have to take effect immediately,

RE: System update?

2016-02-03 Thread Leschke, Scott
No I haven't. I'll do that. Thx -Original Message- From: Jean-Baptiste Onofré [mailto:j...@nanthrax.net] Sent: Wednesday, February 03, 2016 9:55 AM To: user@karaf.apache.org Subject: Re: System update? Did you take a look on http://karaf.apache.org/manual/latest/update-notes.html ?

Re: osgi application service ?

2016-02-03 Thread Jean-Baptiste Onofré
Hi Scott, It's normal as it comes with osgi compendium. So we would need to add a feature to provide both API and an implementation (we don't have such feature for now). Regards JB On 02/03/2016 06:48 PM, Scott Lewis wrote: Hi, I don't see the org.osgi.service.application API in Karaf

osgi application service ?

2016-02-03 Thread Scott Lewis
Hi, I don't see the org.osgi.service.application API in Karaf 4.0.4 present by defaultdoes karaf have a feature or features that 1) Exports the org.osgi.service.application package? 2) Provides a compliant implementation of the relevant services? Scott

RE: System update?

2016-02-03 Thread Leschke, Scott
Just to clarify, I didn't mean to imply that the changes would have to take effect immediately, although that would be cool. A restart would be perfectly acceptable. I just thought it might be sweet to easily upgrade an existing system (and it's installed features) to the latest versions

Re: Automatically Launching `log:tail`

2016-02-03 Thread Jean-Baptiste Onofré
Hi Lars, I think we are not so far ;) We should use Java primitives there, like $.commands.contains() or so. Regards JB On 02/03/2016 05:59 PM, Lars Kiesow wrote: Hi JB, thanks for the answer. Sadly, when I add that to the init script I get: Error in initialization script: Command not

RE: Jenkins not recognizing "bundle" packaging

2016-02-03 Thread Pratt, Jason
Hi JB - I've tried setting package to "jar" with jar bundle war Added to the maven-bundle-plugin, it still is not picking up the autowire.xml file from generated-resources\OSGI-INF\blueprint directory generated by the blueprint annotations and adding it to the final

Can Pax CDI scans WAB + lib

2016-02-03 Thread Charles Moulliard
Hi, Can Pax CDI scans a bundle packaged as a WAB where the WEB-INF/lib folder contains the jar files to be scanned ? The Bundle-ClassPath of the manifest file includes the jar files Bundle-ClassPath: WEB-INF/classes,.,WEB-INF/lib/annotations-2.0.1.jar,WE

Re: osgi application service ?

2016-02-03 Thread Jean-Baptiste Onofré
Using the equinox one is good, we just provide feature for it. On 02/03/2016 07:13 PM, Scott Lewis wrote: On 2/3/2016 10:06 AM, Jean-Baptiste Onofré wrote: Hi Scott, It's normal as it comes with osgi compendium. So we would need to add a feature to provide both API and an implementation (we

Re: osgi application service ?

2016-02-03 Thread Scott Lewis
On 2/3/2016 10:06 AM, Jean-Baptiste Onofré wrote: Hi Scott, It's normal as it comes with osgi compendium. So we would need to add a feature to provide both API and an implementation (we don't have such feature for now). Hi JB, Other than the equinox one...do you or others know or have

Can Pax CDI scans WAB + lib

2016-02-03 Thread Charles Moulliard
Hi, Can Pax CDI scans WAB + lib -- Charles Moulliard Apache Committer & PMC / Architect @RedHat Twitter : @cmoulliard | Blog : http://cmoulliard.github.io

Re: Can Pax CDI scans WAB + lib

2016-02-03 Thread Achim Nierbeck
Hi, I wouldn't know why it shouldn't work. Pax-Web scans transitive for jsps and tlds in the classpath. AFAIRC this is also done for bean.xml's regards, Achim 2016-02-03 19:25 GMT+01:00 Charles Moulliard : > Hi, > > Can Pax CDI scans a bundle packaged as a WAB where the

RE: [fixed] Jenkins not recognizing "bundle" packaging

2016-02-03 Thread Pratt, Jason
I just used the maven resource plugin to move the files I needed. -Original Message- From: Pratt, Jason [mailto:jason.pr...@windriver.com] Sent: Wednesday, February 03, 2016 11:13 AM To: user@karaf.apache.org Subject: RE: Jenkins not recognizing "bundle" packaging Hi JB - I've tried